/* =========================================================
   FirstPLAYER Download Page
   ========================================================= */


/* ---------- PAGE HEADER ---------- */

.page-header {
    padding:
        80px 0 40px;
}

.page-header h1 {
    font-size:
        clamp(2.4rem,5vw,3.8rem);
    letter-spacing:-0.05em;
    margin-bottom:20px;
}

.model-badge {
    display:inline-block;
    margin-bottom:15px;
    padding:5px 12px;
    border-radius:20px;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:.5px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.25);
    color:inherit;
}

.model-badge.recommended-model-badge {
    position:absolute;
    top:-15px;
    left:25px;
    margin:0;
    padding:6px 15px;
    background:rgba(79,124,255,0.08);
    color:#4f7cff;
    border-radius:20px;
    border:1px solid rgba(79,124,255,0.25);
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.3px;
}


/* =========================================================
   DOWNLOAD CARDS
   ========================================================= */

   .download-card ul{
    padding:0;
    list-style:none;
    margin-bottom:auto;
}

.download-size{
    margin-top:auto;
    margin-bottom:25px;
}

.download-card .button{
    margin-top:0;
}

.download-card .button-alt{
    margin-top:12px;
}

.downloads {
    padding:
        40px 0 100px;
}

.download-title {
    font-size:2rem;
    letter-spacing:-0.04em;
    margin-bottom:35px;
}

.download-grid {
    display:grid;
    grid-template-columns:
        repeat(3,1fr);
    gap:30px;
}

.download-card {
    position:relative;
    background:white;
    border-radius:32px;
    padding:40px;
    border:
        1px solid
        rgba(15,23,42,.06);
    box-shadow:
        0 15px 50px
        rgba(15,23,42,.05);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
}

.download-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 30px 70px
        rgba(15,23,42,.12);
}

.download-card.featured {
    border:
        2px solid
        rgba(212,175,55,.35);
    background:
        linear-gradient(
            160deg,
            rgba(255,215,120,.16) 0%,
            rgba(255,215,120,.03) 45%,
            #ffffff 75%
        );
}

.download-card.core-muted {
    border:
        1px solid
        rgba(77, 134, 214, 0.699);
    background:
        linear-gradient(
            160deg,
            rgba(148,163,184,.16) 0%,
            rgba(148,163,184,.04) 45%,
            #ffffff 75%
        );
}

.recommended-badge {
    position:absolute;
    top:-15px;
    right:30px;
    padding:
        6px 15px;
    background:
        linear-gradient(
            135deg,
            #4f7cff,
            #8b5cf6
        );
    color:white;
    border-radius:20px;
    font-size:.75rem;
    font-weight:700;
}

.recommended-badge.muted {
    background:rgba(79,124,255,0.08);
    color:#4f7cff;
    border:1px solid rgba(79,124,255,0.25);
}

.download-icon {
    font-size:3rem;
    margin-bottom:20px;
}

.download-card h3 {
    font-size:1.6rem;
    letter-spacing:-.04em;
}

.download-subtitle {
    color:#667085;
    margin-bottom:25px;
}

.download-card ul {
    padding:0;
    list-style:none;
}

.download-card li {
    margin:
        12px 0;
    color:#475467;
}

.download-size {
    margin:
        25px 0;
    color:#667085;
    font-size:.9rem;
}

.download-card .button,
.download-card .button-alt {
    width:100%;
    text-align:center;
    display:block;
}

.button-alt {
    margin-top:12px;
    padding:10px 15px;
    border-radius:14px;
    background:transparent;
    border:1px solid rgba(15,23,42,.08);
    color:#98a2b3;
    font-size:.82rem;
    font-weight:500;
    transition:.25s;
}

.button-alt:hover {
    color:#667085;
    border-color:rgba(15,23,42,.15);
    background:rgba(15,23,42,.02);
}
 /* =========================================================
   AI SECTION
   ========================================================= */

.ai-section {
    background:#fafbff;
    padding:
        100px 0;
}

.ai-block {
    background:white;
    padding:40px;
    border-radius:35px;
    margin-bottom:35px;
    border:
        1px solid
        rgba(15,23,42,.05);
}

.ai-header {
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:35px;
}

.ai-symbol {
    width:70px;
    height:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:22px;
    background:#eef3ff;
    font-size:2rem;
}

.ai-header h3 {
    margin:0;
    font-size:2rem;
}

.ai-header p {
    color:#667085;
    margin:5px 0;
}


/* =========================================================
   MODELS
   ========================================================= */

.model-grid {
    display:grid;
    grid-template-columns:
        repeat(3,1fr);
    gap:25px;
}

.model-card {
    position:relative;
    display:flex;
    flex-direction:column;
    padding:28px;
    border-radius:25px;
    background:#fafbff;
    border:
        1px solid
        rgba(15,23,42,.06);
}

.model-card h4 {
    font-size:1.4rem;
    margin-top:0;
}

.model-card p {
    color:#667085;
    min-height:75px;
    flex-grow:1;
}

.model-card .model-badge {
    position:absolute;
    top:-15px;
    left:25px;
    margin:0;
    background:rgba(79,124,255,0.08);
    color:#4f7cff;
    border:
        1px solid
        rgba(79,124,255,0.25);
}

.model-buttons {
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:auto;
}

.small-button {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:
        11px 15px;
    border-radius:14px;
    background:white;
    border:
        1px solid
        rgba(15,23,42,.1);
    font-size:.9rem;
    font-weight:600;
    transition:.25s;
}

.small-button:hover {
    transform:
        translateY(-3px);
}

.primary-small {
    background:
        linear-gradient(
            135deg,
            #4f7cff,
            #755cff
        );
    color:white;
    border:none;
}
 /* =========================================================
   INSTALLATION INFO
   ========================================================= */

.installation-info {
    padding:
        10px 0;
}

.info-grid {
    display:grid;
    grid-template-columns:
        repeat(2,1fr);
    gap:30px;
}

.info-box {
    background:#fff;
    border-radius:30px;
    padding:35px;
    border:
        1px solid
        rgba(15,23,42,.06);
}

.info-box h3 {
    margin-top:0;
    font-size:1.5rem;
}

.info-box p {
    color:#667085;
}

.info-box pre {
    background:#111827;
    color:#e2e8f0;
    padding:20px;
    border-radius:18px;
    overflow:auto;
    font-size:.9rem;
}

/* =========================================================
   SYSTEM REQUIREMENTS ACCORDION
   ========================================================= */

.requirements-section {
    padding:80px 0;
}


.requirements-toggle {
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 35px;

    background:white;
    border:1px solid rgba(15,23,42,.06);
    border-radius:25px;

    font-size:1.6rem;
    font-weight:700;

    cursor:pointer;

    box-shadow:
        0 15px 50px rgba(15,23,42,.05);
}


.requirements-icon {
    font-size:2rem;
    transition:.3s;
}


.requirements-toggle.active .requirements-icon {
    transform:rotate(45deg);
}


.requirements-content {

    max-height:0;
    overflow:hidden;

    transition:
        max-height .45s ease;

}


.requirements-content.open {

    max-height:1200px;

    padding-top:35px;

}


.requirements-grid {

    display:grid;
    grid-template-columns:
        repeat(3,1fr);

    gap:25px;

}


.requirement-box {

    background:#fafbff;

    border:
        1px solid
        rgba(15,23,42,.06);

    border-radius:25px;

    padding:28px;

}


.requirement-box h3 {

    margin-top:0;
    font-size:1.3rem;

}


.requirement-box ul {

    padding-left:20px;

}


.requirement-box li {

    margin:10px 0;
    color:#667085;

}


.recommended-hardware {

    margin-top:25px;

    padding:30px;

    border-radius:25px;

    background:
        linear-gradient(
            135deg,
            rgba(79,124,255,.08),
            rgba(139,92,246,.05)
        );

}


.recommended-hardware h3 {

    margin-top:0;

}




/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:1100px){
    .download-grid {
        grid-template-columns:
            repeat(2,1fr);
    }
}

@media(max-width:900px){ 
    .requirements-grid {

        grid-template-columns:1fr;

    }
    .download-grid {
        grid-template-columns:1fr;
    }

    .model-grid {
        grid-template-columns:
            1fr;
    }

    .info-grid {
        grid-template-columns:
            1fr;
    }
}

@media(max-width:600px){
    .page-header {
        padding-top:50px;
    }

    .download-card {
        padding:28px;
    }

    .ai-block {
        padding:25px;
    }

    .ai-header {
        flex-direction:column;
        align-items:flex-start;
    }
}