@charset "utf-8";

.content-section {
    background-color: #1e1e324d;
    border: 1px solid #33333f;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
}

.content-section h2 {
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #33333f;
    font-size: 1.4em;
}

.content-section li { 
    color:lightgray;
    line-height: 30px;
    font-size: 1.2em; 
}

.content-section strong {
    color: #aaa;
}

.content-section em {
    color: #fff;
}

.content-section p {
    font-size: 1.2em;
    color: lightgray;
}
.content-section {
    background-color: #1e1e324d;
    border: 1px solid #33333f;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
}



#info-content p {
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

#info-content p:last-of-type {
    margin-bottom: 0;
}

#info-content h3, #view-setup-guide h3 {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-top: 25px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

#info-content h3 .sport-icon, #view-setup-guide h3 .sport-icon {
    font-size: 1em;
    margin-right: 8px;
}

#info-content h3:first-of-type:not(:first-child), #view-setup-guide h3:first-of-type {
    margin-top: 0;
}

#info-content h3:not(:first-child) {
    margin-top: 30px;
}

#info-content ul, #view-setup-guide ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}


#info-content p {
    line-height: 1.8;
    color: lightgray;
    font-size: 1.2em;
    margin-bottom: 15px;
}

#info-content p:last-of-type {
    margin-bottom: 0;
}

#info-content h3, #view-setup-guide h3 {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-top: 25px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

#faq-section details {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--table-border-color);
    border-radius: 4px;
    margin-bottom: 10px;
}

#faq-section summary {
    padding: 12px 15px;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    color: lightgray;
    transition: background-color 0.2s ease;
    position: relative;
    list-style: none;
}

#faq-section summary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: gray;
}

#faq-section summary::-webkit-details-marker {
    display: none;
}

#faq-section summary::before {
    content: '+';
    color: #4d94ff;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s ease;
}

#faq-section details[open] summary::before {
    transform: rotate(45deg);
}

#faq-section details[open] summary {
    border-bottom: 1px dashed var(--table-border-color);
}

#faq-section details p {
    padding: 15px;
    margin: 0;
    color: lightgray;
    line-height: 1.7;
    font-size: 1.1em;
    border-top: 1px solid var(--table-border-color);
    background-color: rgba(0,0,0, 0.1);
}

.analysis-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.analysis-card {
    background-color: var(--table-row-alt-bg);
    border: 1px solid var(--table-border-color);
    border-radius: 5px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.analysis-card:hover {
    transform: translateY(-5px);
    border-color: #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.analysis-card h3 {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.analysis-card h3 .sport-icon {
    font-size: 1.1em;
    margin-right: 8px;
}

.analysis-card .summary {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.analysis-card .prediction {
    font-size: 0.95rem;
    color: var(--tertiary-neon-color);
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 3px var(--tertiary-neon-color);
}

.analysis-card .details-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #0ff;
    color: #0ff;
    padding: 8px 15px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-start;
    text-shadow: 0 0 3px #0ff;
    box-shadow: 0 0 3px #0ff;
}

.analysis-card .details-button:hover {
    background-color: #0ff;
    color: var(--bg-color);
    box-shadow: 0 0 8px #0ff, 0 0 15px #0ff;
    text-shadow: none;
}

.highlight-card-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.highlight-card {
    background-color: #22222a;
    border: 1px solid #33333f;
    border-radius: 5px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.highlight-card h3 {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.highlight-card h3 .sport-icon {
    font-size: 1.1em;
    margin-right: 8px;
}

.highlight-card .summary {
    font-size: 0.9rem;
    color: var(--text-muted-color);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.highlight-card .prediction {
    font-size: 0.95rem;
    color: var(--tertiary-neon-color);
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 3px var(--tertiary-neon-color);
}

.highlight-card .details-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #0ff;
    color: #0ff;
    padding: 8px 15px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
    align-self: flex-start;
    text-shadow: 0 0 3px #0ff;
    box-shadow: 0 0 3px #0ff;
}

.highlight-card .details-button:hover {
    background-color: #0ff;
    color: var(--bg-color);
    box-shadow: 0 0 8px #0ff, 0 0 15px #0ff;
    text-shadow: none;
}
