:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary-color: #1a1a1a;
    --accent-color: #81c784;
    --text-color: #2d2d2d;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #c5c5c5;
    --dark-bg: #121212;
    --overlay-color: rgba(0, 0, 0, 0.65);
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --container-width: 1200px;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
    color: var(--secondary-color);
}
h1 { 
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 4rem); 
}
h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2.1rem); }
h5 { font-size: 1.15rem; }
p {
    margin-bottom: 1.1rem;
}
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}
.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
}
.btn-cookie {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
}
.btn-cookie:hover {
    background-color: var(--primary-light);
    color: var(--white);
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 18px 0;
    transition: var(--transition);
}
.site-header.scrolled {
    background-color: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a {
    display: flex;
    align-items: center;
}
.logo img {
    height: 90px;
    width: auto;
    transition: var(--transition);
}
.site-header.scrolled .logo img {
    height: 70px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 10px 0;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 2px;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.header-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.88rem;
    margin-left: 24px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
}
.header-cta:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: var(--transition);
    border-radius: 3px;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }
.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("https://silverfernhunt.com/wp-content/themes/silverfernhunt-com/img/bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 60, 30, 0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    padding: 0 24px;
}
.hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-style: normal;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-content h1 em {
    font-style: italic;
    color: var(--white);
}
.hero-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.92;
}
.scroll-indicator {
    margin-top: 110px;
}
.scroll-indicator a {
    color: var(--white);
    display: inline-block;
    animation: bounce 2s infinite;
    opacity: 0.8;
}
.scroll-indicator a:hover {
    opacity: 1;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}
.faq-header {
    display: flex;
    align-items: center;
}
.faq-header h2 {
    margin: 0;
    position: relative;
}
.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}
.faq-column {
    padding: 30px;
}
.faq-item {
    margin-bottom: 35px;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(129, 199, 132, 0.2) 100%);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 16px 6px 6px 6px;
    margin-bottom: 14px;
}
.faq-item h5 {
    margin-bottom: 10px;
    font-weight: 600;
}
.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}
.about-content h2 {
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}
.about-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 3px;
}
.about-content p {
    color: var(--text-light);
    text-align: center;
}
.games-section {
    padding: 120px 0;
    position: relative;
    background-image: url("https://silverfernhunt.com/wp-content/themes/silverfernhunt-com/img/bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.games-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(30, 60, 30, 0.6) 100%);
}
.games-section .container {
    position: relative;
    z-index: 1;
}
.game-card {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}
.game-card img {
    border-radius: var(--border-radius);
    margin: 0 auto 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.game-card img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}
.game-card h2 {
    color: var(--white);
    margin-bottom: 25px;
}
.game-card h2 a {
    color: var(--white);
}
.game-card h2 a:hover {
    color: var(--accent-color);
}
.newsletter-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}
.newsletter-section h2 {
    margin-bottom: 30px;
}
.newsletter-form {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 22px;
    border: 2px solid var(--medium-gray);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
}
.newsletter-form .btn-submit {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 16px 30px;
}
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px;
    align-items: start;
}
.testimonials-header {
    display: flex;
    align-items: center;
}
.testimonials-header h2 {
    position: relative;
}
.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}
.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.testimonial-card p {
    margin-bottom: 22px;
    font-style: italic;
    color: var(--text-color);
}
.testimonial-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin-bottom: 22px;
    border-radius: 2px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}
.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}
.star-rating {
    color: var(--primary-color);
    font-size: 1.15rem;
    letter-spacing: 3px;
    margin-left: auto;
}
.cta-banner {
    padding: 160px 0;
    position: relative;
    background-image: url("https://silverfernhunt.com/wp-content/themes/silverfernhunt-com/img/bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 60, 30, 0.5) 100%);
}
.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.cta-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    border-radius: 3px;
}
.cta-text {
    padding-left: 55px;
}
.cta-text h2 {
    color: var(--white);
    margin-bottom: 12px;
}
.cta-text p {
    color: var(--white);
    margin-bottom: 0;
    opacity: 0.9;
}
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.contact-info h2 {
    margin-bottom: 30px;
    position: relative;
}
.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--text-color);
    transition: var(--transition);
    padding: 12px 0;
}
.contact-list li:hover {
    color: var(--primary-color);
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(129, 199, 132, 0.15) 100%);
    border-radius: 50%;
}
.contact-icon svg {
    fill: var(--primary-color);
}
.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
}
.contact-form .form-group {
    margin-bottom: 22px;
}
.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-color);
}
.contact-form .required {
    color: #e53935;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}
.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}
.disclaimer-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d3d10 100%);
    text-align: center;
}
.disclaimer-section h3 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 25px;
}
.disclaimer-section h3 a {
    color: var(--white);
    transition: var(--transition);
}
.disclaimer-section h3 a:hover {
    color: var(--accent-color);
}
.disclaimer-section p {
    color: var(--white);
    max-width: 920px;
    margin: 0 auto 18px;
    opacity: 0.9;
    line-height: 1.7;
}
.site-footer {
    padding: 28px 0;
    background-color: var(--secondary-color);
    text-align: center;
}
.site-footer p {
    color: var(--white);
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.85;
}
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    z-index: 9999;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.cookie-banner.visible {
    bottom: 0;
}
.cookie-banner p {
    color: var(--white);
    margin: 0;
    text-align: center;
    opacity: 0.9;
}
@media (max-width: 1024px) {
    .nav-menu {
        gap: 18px;
    }
    .nav-menu a {
        font-size: 0.85rem;
    }
    .hero-section,
    .games-section,
    .cta-banner {
        background-attachment: scroll;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-header {
        justify-content: center;
        text-align: center;
    }
    .faq-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .faq-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .about-grid {
        gap: 45px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-header {
        justify-content: center;
        text-align: center;
    }
    .testimonials-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .testimonial-card {
        max-width: 520px;
        margin: 0 auto;
    }
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-line {
        display: none;
    }
    .cta-text {
        padding-left: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .contact-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info {
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        opacity: 0;
        transition: var(--transition);
    }
    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-menu a {
        display: block;
        padding: 22px 45px;
        font-size: 1.1rem;
    }
    .nav-menu a::after {
        display: none;
    }
    .header-cta {
        margin-left: 0;
        margin-top: 35px;
        padding: 16px 45px;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .faq-column {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .games-section {
        padding: 80px 0;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input[type="email"] {
        border-right: 2px solid var(--medium-gray);
        border-radius: var(--border-radius);
        margin-bottom: 12px;
    }
    .newsletter-form .btn-submit {
        border-radius: var(--border-radius);
    }
    .testimonial-card {
        padding: 28px;
    }
    .testimonial-author {
        flex-wrap: wrap;
    }
    .star-rating {
        margin-left: 0;
        width: 100%;
        margin-top: 12px;
    }
    .cta-banner {
        padding: 90px 0;
    }
    .contact-form-wrapper {
        padding: 30px;
    }
    .disclaimer-section {
        padding: 50px 0;
    }
    .disclaimer-section h3 {
        font-size: 1.6rem;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .logo img {
        height: 45px;
    }
    .site-header.scrolled .logo img {
        height: 40px;
    }
    .hero-section {
        min-height: auto;
        padding: 160px 0 90px;
    }
    .scroll-indicator {
        margin-top: 55px;
    }
    .faq-section,
    .about-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0;
    }
}
.site-header.header-solid {
    background-color: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(12px);
}
.page-hero {
    padding: 190px 0 90px;
    position: relative;
    background-image: url("https://silverfernhunt.com/wp-content/themes/silverfernhunt-com/img/bg.png");
    background-size: cover;
    background-position: center;
    text-align: center;
}
.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 60, 30, 0.5) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    color: var(--white);
    margin: 0;
    font-family: var(--font-family);
    font-size: 2.6rem;
}
.contact-page-section {
    padding: 70px 0;
    background-color: var(--white);
}
.game-page {
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.game-section {
    flex: 1;
    padding: 130px 0 50px;
    display: flex;
    flex-direction: column;
}
.game-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 35px;
}
.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.legal-content {
    padding: 150px 0 70px;
    background-color: var(--white);
}
.legal-content h1 {
    font-family: var(--font-family);
    font-size: 2.3rem;
    margin-bottom: 35px;
    color: var(--secondary-color);
}
.legal-content h2 {
    font-size: 1.55rem;
    margin-top: 45px;
    margin-bottom: 22px;
    color: var(--secondary-color);
}
.legal-content p {
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.85;
}
.legal-content ul {
    margin-bottom: 22px;
    padding-left: 22px;
}
.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.85;
    position: relative;
    padding-left: 22px;
}
.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.legal-content strong {
    color: var(--secondary-color);
}
@media (max-width: 768px) {
    .page-hero {
        padding: 150px 0 70px;
    }
    .page-hero h1 {
        font-size: 2.1rem;
    }
    .game-section {
        padding: 110px 0 25px;
    }
    .game-container {
        aspect-ratio: 4 / 3;
    }
    .legal-content {
        padding: 110px 0 50px;
    }
    .legal-content h1 {
        font-size: 1.9rem;
    }
    .legal-content h2 {
        font-size: 1.35rem;
    }
}
@media (max-width: 480px) {
    .game-container {
        aspect-ratio: 3 / 4;
        min-height: 520px;
    }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}
.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}
.popup-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 45px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(25px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.popup-overlay.visible .popup-container {
    transform: scale(1) translateY(0);
}
.popup-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(129, 199, 132, 0.25) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--primary-color);
}
.popup-icon svg {
    width: 42px;
    height: 42px;
}
.popup-title {
    font-size: 1.55rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}
.popup-message {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.65;
}
.popup-close {
    min-width: 160px;
}
.btn.sending {
    opacity: 0.7;
    cursor: not-allowed;
}
@media (max-width: 480px) {
    .popup-container {
        padding: 32px 22px;
    }
    .popup-icon {
        width: 75px;
        height: 75px;
    }
    .popup-icon svg {
        width: 38px;
        height: 38px;
    }
    .popup-title {
        font-size: 1.35rem;
    }
}