/* === RESET / BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #0c0c0c;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: 100%;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === UTILS === */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.uppercase {
    text-transform: uppercase;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.deck-header {
    background: #0c0c0c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.deck-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deck-header__logo a {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    color: #ffab76;
    text-shadow: 0 0 5px rgba(0, 255, 200, 0.3);
    letter-spacing: 1px;
}

.deck-nav__list {
    display: flex;
    gap: 40px;
}

.deck-nav__list li a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    padding: 8px 0;
    position: relative;
}

.deck-nav__list li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #00ffc8;
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

.deck-nav__list li a:hover::after {
    width: 100%;
}

.deck-header__toggle {
    display: none;
    background: none;
    color: #ffffff;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .deck-nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 20px;
        background-color: #111;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .deck-nav--visible {
        display: block;
    }

    .deck-nav__list {
        flex-direction: column;
        gap: 20px;
    }

    .deck-header__toggle {
        display: block;
    }
}

.deck-hero {
    background: linear-gradient(to bottom right, #2a0c1f, #3a1030);
    padding: 90px 0 60px;
    color: #ffffff;
}

.deck-hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.deck-hero__visual {
    flex: 1 1 400px;
    text-align: center;
}

.deck-hero__visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 171, 118, 0.3));
}

.deck-hero__content {
    flex: 1 1 520px;
}

.deck-hero__title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.2rem;
    color: #ffab76;
    margin-bottom: 20px;
}

.deck-hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #f4f4f4;
}

.deck-hero__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.deck-hero__features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ffffff;
}

.deck-hero__features i {
    color: #ffab76;
    font-size: 1.2rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .deck-hero {
        padding: 0 0 20px;
    }

    .deck-hero__visual img {
        display: none;
    }

    .deck-hero__title {
        font-size: 2rem;
    }

    .deck-hero__subtitle {
        display: none;
    } 
}

.deck-lineup {
    background: #0e0814;
    padding: 80px 0;
}

.deck-lineup__title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    color: #f9b85d;
    text-align: center;
    margin-bottom: 50px;
}

.deck-lineup__card {
    background: linear-gradient(135deg, #1e1229, #1a0f23);
    border-left: 6px solid #f9b85d;
    border-radius: 12px;
    margin-bottom: 30px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.deck-lineup__card--highlighted {
    border-left-color: #ff5e5e;
    background: linear-gradient(135deg, #2e152c, #1b0d1a);
}

.deck-lineup__tag {
    position: absolute;
    top: 15px;
    left: -10px;
    background: #ff5e5e;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    transform: rotate(-5deg);
    border-radius: 6px;
}

.deck-lineup__body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 20px;
}

.deck-lineup__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.deck-lineup__logo {
    height: 50px;
}

.deck-lineup__rating i {
    color: gold;
    font-size: 1.1rem;
    margin: 0 1px;
}

.deck-lineup__bonus-label {
    font-size: 0.9rem;
    color: #aaa;
}

.deck-lineup__bonus-amount {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
}

.deck-lineup__perks {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.deck-lineup__perks li {
    margin: 4px 0;
}

.deck-lineup__perks i {
    margin-right: 6px;
    color: #f9b85d;
}

.deck-lineup__btn {
    background: #f9b85d;
    color: #0e0814;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .deck-lineup__body {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .deck-lineup__body {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .deck-lineup__col {
        align-items: flex-start;
        text-align: left;
    }

    .deck-lineup__btn {
        width: 100%;
        text-align: center;
    }

    .deck-lineup__logo {
        height: 40px;
    }

    .deck-lineup__rating i {
        font-size: 1rem;
    }

    .deck-lineup__perks li {
        font-size: 0.9rem;
    }

    .deck-lineup__bonus-amount {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .deck-lineup {
        padding: 50px 0;
    }

    .deck-lineup__title {
        font-size: 1.8rem;
    }

    .deck-lineup__card {
        padding: 16px;
    }

    .deck-lineup__tag {
        font-size: 0.7rem;
        top: 10px;
        left: -6px;
    }
}

.deck-info {
    background: #0f101a;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.deck-info__title {
    font-size: 2.2rem;
    font-family: 'Bebas Neue', cursive;
    color: #f9b85d;
    margin-bottom: 10px;
}

.deck-info__subtitle {
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 50px;
}

.deck-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.deck-info__card {
    background: #1a1c29;
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.deck-info__card:hover {
    transform: translateY(-6px);
}

.deck-info__card i {
    font-size: 2rem;
    color: #f9b85d;
    margin-bottom: 16px;
}

.deck-info__card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.deck-info__card p {
    font-size: 0.95rem;
    color: #bbbbbb;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .deck-info__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .deck-info__grid {
        grid-template-columns: 1fr;
    }

    .deck-info__title {
        font-size: 1.8rem;
    }
}

.deck-faq {
    background: #14151e;
    color: #fff;
    padding: 80px 0;
}

.deck-faq__title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    color: #f9b85d;
    text-align: center;
    margin-bottom: 50px;
}

.deck-faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.deck-faq__item {
    margin-bottom: 16px;
    border-bottom: 1px solid #333;
}

.deck-faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    padding: 16px 0;
    color: #f1f1f1;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.deck-faq__question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #f9b85d;
}

.deck-faq__item.open .deck-faq__question::after {
    content: "−";
}

.deck-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.deck-faq__item.open .deck-faq__answer {
    max-height: 400px;
    opacity: 1;
}

.deck-faq__answer p {
    margin: 0;
    padding: 0 0 16px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.deck-contact {
    background: #0f101a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.deck-contact__title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    color: #f9b85d;
    margin-bottom: 10px;
}

.deck-contact__desc {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 40px;
}

.deck-contact__form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deck-contact__form input,
.deck-contact__form textarea {
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    background: #1a1c29;
    color: #fff;
    font-size: 1rem;
    resize: vertical;
}

.deck-contact__form input:focus,
.deck-contact__form textarea:focus {
    outline: 2px solid #f9b85d;
}

.deck-contact__btn {
    padding: 12px 24px;
    background: #f9b85d;
    color: #0f101a;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.deck-contact__btn:hover {
    background: #ffc86f;
}

.deck-thanks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.deck-thanks__box {
    background: #1a1c29;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    color: #fff;
}

.deck-thanks__close {
    margin-top: 20px;
    padding: 10px 20px;
    background: #f9b85d;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    color: #0f101a;
}

.deck-footer {
    background: #0a0b12;
    color: #ccc;
    padding: 60px 20px 30px;
    font-size: 0.95rem;
}

.deck-footer__orgs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.deck-footer__orgs img {
    height: 40px;
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.3s ease;
}

.deck-footer__orgs img:hover {
    filter: none;
}

.deck-footer__text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.deck-footer__col h4 {
    color: #f9b85d;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.deck-footer__col p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.deck-footer__nav {
    text-align: center;
    margin-bottom: 20px;
}

.deck-footer__nav a {
    color: #ccc;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
}

.deck-footer__nav a:hover {
    color: #f9b85d;
}

.deck-footer__copy {
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .deck-footer__text-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .deck-footer__nav {
        flex-wrap: wrap;
        line-height: 2;
    }
}

.dg3-cookie-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1b102a;
    color: #ffe080;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    z-index: 1000;
}

.dg3-cookie-wrap a {
    color: #fff;
}

.dg3-cookie-accept {
    background: #ffe080;
    color: #1b102a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}