/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal__content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00d4ff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-modal__icon {
    margin-bottom: 20px;
}

.age-modal__icon svg {
    width: 100px;
    height: 100px;
}

.age-modal__title {
    font-size: 28px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-modal__text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-modal__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-modal__btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-modal__btn--confirm {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0a1a;
}

.age-modal__btn--confirm:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.age-modal__btn--deny {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.age-modal__btn--deny:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #999;
}

.age-modal__disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid #00d4ff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.active {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 250px;
    color: #ffffff;
    font-size: 14px;
}

.cookie-banner__text a {
    color: #00d4ff;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0a1a;
}

.cookie-banner__btn--accept:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.cookie-banner__btn--decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header__fixed {
    padding: 15px 0;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__link__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header__link__logo:hover {
    color: #00ffff;
}

.header__logo {
    width: 40px;
    height: 40px;
}

.header__logo-text {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header__links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.header__list {
    margin: 0;
}

.header__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header__link:hover {
    color: #00d4ff;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.header__link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.header__line {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    transition: all 0.3s ease;
}

.header__burger.active .header__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__burger.active .header__line:nth-child(2) {
    opacity: 0;
}

.header__burger.active .header__line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hero__badge {
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-section__container {
    text-align: center;
}

.game-section__header {
    margin-bottom: 50px;
}

.game-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.game-section__subtitle {
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.game-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.game-placeholder__image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.game-placeholder__image svg {
    width: 100%;
    height: auto;
    display: block;
}

.game-placeholder__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

.game-placeholder__btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0a1a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    text-decoration: none;
    text-align: center;
}

.game-placeholder__btn:hover {
    background: linear-gradient(135deg, #00a8cc 0%, #0088aa 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.game-placeholder__btn:active {
    transform: translateY(-1px);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-section__container {
    text-align: center;
}

.about-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
}

.about-section__subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.about-card__title {
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card__text {
    color: #cccccc;
    line-height: 1.6;
}

.about-card__list {
    list-style: none;
    color: #cccccc;
    line-height: 1.8;
}

.about-card__list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-card__list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-section__container {
    text-align: center;
}

.features-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.features-section__subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card__text {
    color: #cccccc;
    line-height: 1.6;
}

/* How To Section */
.howto-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.howto-section__container {
    text-align: center;
}

.howto-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 50px;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.howto-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.howto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.howto-card__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #0a0a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.howto-card__title {
    font-size: 22px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.howto-card__text {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-section__title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
}

.contact-section__text {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 15px;
}

.contact-section__email {
    font-size: 18px;
    color: #ffffff;
}

.contact-section__email a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section__email a:hover {
    color: #00ffff;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 50px 0 30px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__section {
    text-align: left;
}

.footer__title {
    font-size: 24px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer__subtitle {
    font-size: 18px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer__text {
    color: #cccccc;
    line-height: 1.6;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #00d4ff;
}

.footer__responsible {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.footer__responsible-title {
    font-size: 16px;
    color: #00d4ff;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__responsible-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.footer__responsible-link:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.footer__responsible-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.footer__responsible-link:hover .footer__responsible-logo {
    filter: brightness(1.1);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
}

.footer__disclaimer {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer__copyright {
    font-size: 14px;
    color: #cccccc;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.legal-page__container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page__title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 30px;
    text-align: center;
}

.legal-page__content {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.legal-page__content h2 {
    font-size: 28px;
    color: #00d4ff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page__content h3 {
    font-size: 22px;
    color: #00d4ff;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page__content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page__content ul,
.legal-page__content ol {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
}

.legal-page__content li {
    margin-bottom: 10px;
}

.legal-page__content a {
    color: #00d4ff;
    text-decoration: underline;
}

.legal-page__content a:hover {
    color: #00ffff;
}

.legal-page__last-updated {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 30px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header__links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        gap: 20px;
    }

    .header__links.active {
        left: 0;
    }

    .header__burger {
        display: flex;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .game-section__title,
    .about-section__title,
    .features-section__title,
    .howto-section__title,
    .contact-section__title {
        font-size: 32px;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__btn {
        flex: 1;
        min-width: 120px;
    }

    .age-modal__content {
        padding: 30px 20px;
    }

    .age-modal__buttons {
        flex-direction: column;
    }

    .age-modal__btn {
        width: 100%;
    }

    .footer__responsible-logos {
        gap: 20px;
    }

    .footer__responsible-logo {
        height: 40px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .game-placeholder {
        padding: 20px;
    }

    .game-placeholder__btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .footer__responsible-logos {
        gap: 15px;
    }

    .footer__responsible-logo {
        height: 35px;
        max-width: 100px;
    }

    .footer__responsible-title {
        font-size: 14px;
    }
}



