/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Anton', sans-serif;
    background-color: #0c0d13;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

.pokegrid-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

body {
    padding-top: 80px;
}

/* Header */
.streamtop {
    background: #0e0c16;
    padding: 16px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.streamtop__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.streamtop__logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ff4e70;
    letter-spacing: 1px;
}

.streamtop__logo span {
    color: #ffffff;
}

@media (max-width: 380px) {
    .streamtop__logo {
        font-size: 1.3rem;
    }
}

.streamtop__list {
    display: flex;
    gap: 26px;
}

.streamtop__list a {
    font-size: 1rem;
    color: #c9c9d4;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.streamtop__list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #ff4e70;
    transition: width 0.3s ease;
}

.streamtop__list a:hover {
    color: #ff4e70;
}

.streamtop__list a:hover::after {
    width: 100%;
}

.streamtop__auth {
    background: #ff4e70;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.streamtop__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.streamtop__burger {
    display: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
}

/* Modal */
.modalbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    justify-content: center;
    align-items: center;
}

.modalbox__window {
    background: #1a1824;
    padding: 30px;
    border-radius: 10px;
    max-width: 420px;
    width: 90%;
    color: #ffffff;
    position: relative;
}

.modalbox__window h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff4e70;
}

.modalbox__window p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccbd8;
}

.modalbox__window form input {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: #252332;
    border-radius: 6px;
    color: #fff;
}

.modalbox__window form button {
    background: #ff4e70;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

.modalbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    font-size: 1.2rem;
    color: #aaa;
}

.field-error {
    color: #ff6d6d;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Burger Menu (mobile) */
@media (max-width: 820px) {
    .streamtop__nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: #1a1824;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .streamtop__nav.open {
        max-height: 500px;
    }

    .streamtop__list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .streamtop__burger {
        display: block;
    }
}

.pokeland-intro {
    position: relative;
    background: linear-gradient(to bottom right, #0e0c16, #1c1a2c);
    padding: 100px 0 140px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.pokeland-intro__wrap {
    position: relative;
    z-index: 9;
}

.pokeland-intro__title {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #ff4e70;
}

.pokeland-intro__subtitle {
    font-size: 1.2rem;
    max-width: 620px;
    margin: 0 auto 30px;
    color: #cfcfe6;
}

.pokeland-intro__cta {
    background: #ff4e70;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.pokeland-intro__devices {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #aaaac0;
}

.pokeland-chip {
    position: absolute;
    width: 60px;
    opacity: 0.6;
    animation: floatchip 8s ease-in-out infinite alternate;
}

.chip-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.chip-2 {
    top: 40%;
    right: 12%;
    animation-delay: 1.5s;
}

.chip-3 {
    bottom: 10%;
    left: 35%;
    animation-delay: 3s;
}

@keyframes floatchip {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(15deg);
    }
}

@media (max-width: 768px) {
    .pokeland-intro__title {
        font-size: 2rem;
    }

    .pokeland-intro__subtitle {
        font-size: 1rem;
    }

    .pokeland-chip {
        width: 40px;
    }
}

.pokeland-about {
    padding: 100px 0;
    background: #14121e;
    color: #fff;
}

.pokeland-about__heading {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Anton', sans-serif;
    color: #ff4e70;
}

.pokeland-about__grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.pokeland-about__image {
    flex: 1 1 45%;
}

.pokeland-about__image img {
    width: 100%;
}

.pokeland-about__text {
    flex: 1 1 50%;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d1e2;
}

.pokeland-about__text p+p {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .pokeland-about__grid {
        flex-direction: column;
    }

    .pokeland-about__heading {
        font-size: 2rem;
    }
}

.pokeland-schedule {
    background: #0f0d18;
    padding: 90px 0;
    color: #fff;
}

.pokeland-schedule__title {
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #ff4e70;
}

.pokeland-schedule__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.schedcard {
    background: #1b1926;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease;
}

.schedcard:hover {
    transform: translateY(-4px);
}

.schedcard__date {
    background: #ff4e70;
    color: #fff;
    border-radius: 8px;
    padding: 12px 14px;
    text-align: center;
    min-width: 60px;
}

@media (max-width: 480px) {
    .schedcard__date {
        padding: 6px 7px;;
    }
}

.schedcard__day {
    font-size: 1.6rem;
    font-weight: bold;
}

.schedcard__month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedcard__info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.schedcard__info p {
    font-size: 0.88rem;
    color: #c5c5d6;
}

.schedcard__btn {
    margin-left: auto;
    background: transparent;
    border: 1px solid #ff4e70;
    padding: 6px 16px;
    border-radius: 50px;
    color: #ff4e70;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.schedcard__btn:hover {
    background: #ff4e70;
    color: #fff;
}

.poketiers {
    background: #14121e;
    padding: 100px 0;
    color: #fff;
}

.poketiers__heading {
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 2.3rem;
    color: #ff4e70;
    margin-bottom: 60px;
}

.poketiers__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.plan-card {
    background: #1c1a2d;
    border-radius: 16px;
    padding: 30px 24px;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card__header {
    margin-bottom: 20px;
}

.plan-card__title {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.plan-card__desc {
    font-size: 0.95rem;
    color: #c6c6d6;
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.plan-card__features li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #dadada;
    margin-bottom: 10px;
}

.plan-card__features .material-icons {
    font-size: 18px;
    color: #4ad995;
    margin-right: 8px;
}

.plan-card__price {
    font-size: 1.2rem;
    color: #ff4e70;
    margin-bottom: 16px;
    font-weight: 600;
}

.plan-card__btn {
    background: #ff4e70;
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.plan-card__btn:hover {
    background: #ff6e8d;
}

@media (max-width: 768px) {
    .plan-card {
        max-width: 100%;
    }
}

.pokereviews {
    background: #100e18;
    padding: 90px 0;
    color: #fff;
}

.pokereviews__title {
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    color: #ff4e70;
    margin-bottom: 60px;
}

.pokereviews__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.reviewcard {
    background: linear-gradient(145deg, #1a1824, #232033);
    border-radius: 16px;
    min-width: 300px;
    max-width: 340px;
    flex-shrink: 0;
    padding: 24px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    scroll-snap-align: start;
}

@media (max-width: 380px) {
    .reviewcard {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
}

.reviewcard__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.reviewcard__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff4e70;
}

.reviewcard__name {
    font-size: 1rem;
    margin: 0;
    color: #ffffff;
}

.reviewcard__location {
    font-size: 0.85rem;
    color: #bbbbc8;
}

.reviewcard__text {
    font-size: 0.95rem;
    color: #d4d4e2;
    line-height: 1.5;
}

.pokesubscribe {
    background: linear-gradient(to right, #1e1b2b, #19172b);
    padding: 90px 0;
    color: #fff;
}

.pokesubscribe__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pokesubscribe__title {
    font-size: 2.2rem;
    font-family: 'Anton', sans-serif;
    color: #ff4e70;
    margin-bottom: 20px;
}

.pokesubscribe__text {
    font-size: 1rem;
    color: #d4d4e2;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pokesubscribe__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.pokesubscribe__form input {
    padding: 12px 16px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    width: 260px;
    max-width: 100%;
}

.pokesubscribe__form button {
    background: #ff4e70;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.pokesubscribe__form button:hover {
    background: #ff6e8c;
}

.pokesubscribe__note {
    font-size: 0.85rem;
    color: #aaaac1;
}

.pokesubscribe__note a {
    color: #ffb0c0;
    text-decoration: underline;
}

.pokesubscribe__message {
    margin-top: 20px;
    font-size: 0.95rem;
    display: none;
    padding: 14px 16px;
    border-radius: 6px;
    animation: fadeIn 0.3s ease-in;
}

.pokesubscribe__message.success {
    background-color: #1f8f5e;
    color: #ffffff;
}

.pokesubscribe__message.error {
    background-color: #992f3d;
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.pokerdisclaimer {
    background: #13101f;
    color: #eeeeee;
    padding: 80px 0;
    font-size: 1rem;
}

.pokerdisclaimer__title {
    text-align: center;
    font-family: 'Anton', sans-serif;
    color: #ff4e70;
    font-size: 2rem;
    margin-bottom: 40px;
}

.pokerdisclaimer__content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.pokerdisclaimer__content p {
    margin-bottom: 20px;
    color: #d8d8df;
}

.pokerdisclaimer__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pokerdisclaimer__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.98rem;
    color: #c0c0d4;
}

.pokerdisclaimer__list .material-icons {
    font-size: 22px;
    color: #ff4e70;
}

.pokerdisclaimer__links {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.pokerdisclaimer__links li {
    margin-bottom: 10px;
}

.pokerdisclaimer__links a {
    color: #87cefa;
    text-decoration: underline;
    font-weight: 500;
}

.pokerdisclaimer__footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaaac1;
    font-style: italic;
    text-align: center;
}

.pokertail {
    background: #100e1b;
    color: #d2d2df;
    padding: 60px 0;
    font-size: 0.95rem;
    border-top: 1px solid #2b2b3c;
}

.pokertail__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.pokertail__col {
    flex: 1;
    min-width: 220px;
}

.pokertail__brand .pokertail__logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.pokertail__logo span {
    color: #ff4e70;
}

.pokertail__desc {
    margin-bottom: 0;
    color: #aaaac1;
    line-height: 1.6;
}

.pokertail__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pokertail__copy {
    font-size: 0.85rem;
    color: #777799;
    text-align: center;
}

.pokertail__head {
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1rem;
}

.pokertail__list {
    list-style: none;
    padding-left: 0;
}

.pokertail__list li {
    margin-bottom: 10px;
}

.pokertail__list a {
    color: #87cefa;
    text-decoration: none;
    transition: color 0.2s;
}

.pokertail__list a:hover {
    color: #ffffff;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1825;
    color: #ffffff;
    padding: 20px 16px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-in-out;
}

.cookiealert__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.cookiealert__text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #dddddd;
}

.cookiealert__text a {
    color: #ff4e70;
    text-decoration: underline;
    font-weight: 500;
}

.cookiealert__btn {
    background: #ff4e70;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    font-size: 0.95rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookiealert__btn:hover {
    background: #ff6b8a;
}

@keyframes fadeInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}