@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-red: #ff3b3b;
    --primary-red-light: #ff6b6b;
    --primary-red-dark: #cc0000;
    --accent-silver: #e0e0e0;
    
    --dark-bg: #1a0c0c;
    --darker-bg: #0f0505;
    --card-bg-start: rgba(40, 18, 18, 0.85);
    --card-bg-end: rgba(30, 12, 12, 0.95);
    --card-hover-start: rgba(55, 25, 25, 0.95);
    --card-hover-end: rgba(40, 15, 15, 0.98);
    
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --text-muted: #b0b0b0;
    
    --border-glow: rgba(255, 59, 59, 0.2);
    --shadow-red: rgba(255, 59, 59, 0.4);
    --shadow-red-soft: rgba(255, 59, 59, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Montserrat', sans-serif;
    background: #000000;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at center, rgba(0, 0, 0, 0.753) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('../img/bg.jpg') center ;
    pointer-events: none;
    z-index: -1;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.header {
    background: rgba(15, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 5% 100%, 0 85%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    padding: 0 40px;
}

.header .logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 59, 59, 0.4));
    transition: all 0.3s ease;
}

.header .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 59, 59, 0.6));
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding: 8px 15px;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
    border-bottom: 2px solid var(--primary-red);
}

.nav-button {
    background: var(--primary-red);
    color: #fff;
    border: none;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 0.95em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.nav-button:hover {
    background: var(--primary-red-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.5);
}

.nav-button:hover::before {
    left: 100%;
}

.hero {
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 1200px;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 30px;
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(255, 59, 59, 0.4);
    line-height: 1.2;
    animation: fadeInLeft 1s ease;
}
.hero-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px auto 0 auto;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 59, 59, 0.2);
    max-width: 850px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.age-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.age-text {
    color: #e0d0f0;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}

.age-text strong {
    color: #ff6b6b;
    font-weight: 800;
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-age-badge {
        gap: 10px;
        padding: 12px 18px;
        max-width: 700px;
        margin: 20px auto 0 auto;
    }
    
    .age-icon {
        width: 32px;
        height: 32px;
    }
    
    .age-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-age-badge {
        flex-direction: column;
        gap: 8px;
        padding: 15px 12px;
        max-width: 95%;
        margin: 15px auto 0 auto;
        text-align: center;
        border-width: 1px;
    }
    
    .age-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }
    .age-text-wrapper{
          font-size: 0.7rem;
    }
    .age-text {
        width: 100%;
        padding: 0 5px;
        word-break: break-word;
    }
    
    .age-text strong {
        display: inline-block;
        margin-bottom: 3px;
    }
}

@media (max-width: 360px) {
    .hero-age-badge {
        padding: 12px 10px;
    }
    
    .age-icon {
        width: 35px;
        height: 35px;
    }
    
    .age-text {
        font-size: 0.7rem;
    }
}
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 59, 59, 0.05);
    border-left: 4px solid var(--primary-red);
    animation: fadeInLeft 1s ease both;
}

.categories {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    flex-wrap: wrap;
}

.category-button {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 12px 30px;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.category-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-red);
    transition: width 0.3s ease;
    z-index: -1;
}

.category-button:hover {
    color: #000;
}

.category-button:hover::before {
    width: 100%;
}

.offer {
    background: linear-gradient(145deg, var(--card-bg-start), var(--card-bg-end));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 60%, rgba(255, 59, 59, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(145deg, var(--card-hover-start), var(--card-hover-end));
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--primary-red);
}

.offer:hover::before {
    opacity: 1;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.offer-left {
    flex: 0 0 180px;
    text-align: center;
    padding: 10px 10px;
    position: relative;
    transition: all 0.3s ease;
}

.offer-header {
    font-size: 0.5rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary-red);
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 59, 59, 0.3);
    clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.offer-logo {
    max-width: 280px;
    max-height: 280px;
    width: auto;
    height: 70px;
}

.offer:hover .offer-logo {
    transform: scale(1.15) rotate(2deg);
}

.offer-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.offer-bonus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--primary-red);
}

.stars-votes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.stars {
    color: var(--primary-red);
    font-size: 0.8rem;
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.votes {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2a1a1a, #1a0f0f);
    padding: 8px 18px;
    min-width: 70px;
    border: 1px solid rgba(255, 59, 59, 0.4);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6), 0 6px 12px rgba(0, 0, 0, 0.5);
    clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.score-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.score-value {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.6);
}

.offer-right {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.offer-icons-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.offer-icon-st {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.offer-icon-st:hover {
    transform: scale(1.1);
}

.offer-button {
    background: var(--primary-red);
    color: #ffffff;
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
    animation: red-pulse 2s infinite;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.offer-button:hover {
    background: var(--primary-red-light);
    box-shadow: 0 18px 40px rgba(255, 59, 59, 0.6);
}

@keyframes red-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.stat {
    background: linear-gradient(145deg, rgba(40, 18, 18, 0.9), rgba(30, 12, 12, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    padding: 35px 25px;
    border: 1px solid var(--border-glow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    opacity: 0.8;
    transition: width 0.3s ease;
}

.stat:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(145deg, var(--card-hover-start), var(--card-hover-end));
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--primary-red);
}

.stat h3 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(255, 59, 59, 0.4);
}

.stat p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.about-text {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    padding: 40px;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 2.2em;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-premium {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 35px 30px;
    background: linear-gradient(145deg, rgba(40, 18, 18, 0.95), rgba(30, 12, 12, 0.98));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--primary-red);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

.form-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    opacity: 0.8;
}

.form-premium__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.form-premium__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-premium__subtitle {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-premium__field {
    position: relative;
    width: 100%;
}

.form-premium__field input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(20, 10, 10, 0.7);
    border: 2px solid rgba(255, 59, 59, 0.15);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.form-premium__field input:focus {
    border-color: var(--primary-red);
    background: rgba(30, 15, 15, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
}

.form-premium__field label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s ease-out;
}

.form-premium__field input:focus + label,
.form-premium__field input:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%) scale(0.85);
    left: 12px;
    color: var(--primary-red);
    background: linear-gradient(145deg, #2a1a1a, #201010);
    padding: 0 8px;
    clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.form-premium__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.form-premium__checkbox input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary-red);
}

.form-premium__checkbox a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.form-premium__checkbox a:hover {
    text-decoration: underline;
}

.form-premium__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 28px;
    background: var(--primary-red);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 59, 59, 0.3);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.form-premium__btn:hover {
    background: var(--primary-red-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 59, 59, 0.5);
}

.form-premium__secure {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

.footer {
    background: linear-gradient(180deg, rgba(20, 10, 10, 0.95), rgba(10, 5, 5, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-red);
    padding: 40px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 5% 0, 95% 0, 100% 15%, 100% 100%, 0 100%);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
    border-bottom: 2px solid var(--primary-red);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: linear-gradient(145deg, var(--card-bg-start), var(--card-bg-end));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--primary-red);
    padding: 20px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    animation: slideUp 0.5s ease;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-red);
    opacity: 0.8;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    padding-left: 10px;
}

.cookie-banner__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.cookie-banner__text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-banner__text a:hover {
    color: var(--primary-red-light);
    text-decoration: underline;
}

.cookie-banner__button {
    background: var(--primary-red);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 59, 59, 0.3);
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cookie-banner__button:hover {
    background: var(--primary-red-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 59, 59, 0.5);
}
@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red-light);
}

.iti,
._phone {
    width: 100%;
}
@media (max-width: 992px) {
    .container {
        padding: 15px;
    }

    .header-content {
        padding: 0 20px;
    }

    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9em;
        padding: 6px 10px;
    }
    
    .nav-button {
        padding: 10px 22px;
        font-size: 0.85em;
    }

    .hero {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2.5em;
        margin-bottom: 25px;
        text-align: center;
    }

    .hero-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-features li {
        padding: 10px 12px;
        justify-content: center;
        font-size: 0.95rem;
        border-left-width: 3px;
    }

    .categories {
        gap: 15px;
        margin: 25px auto;
    }
    
    .category-button {
        padding: 10px 25px;
        font-size: 0.85em;
    }
    
    .offer {
        padding: 15px;
        margin-bottom: 5px;
        clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
    }
    
    .offer-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .offer-left {
        max-width: 150px;
        margin: 0 auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .offer-logo {
        max-width: 180px;
    }
    
    .offer-header {
        font-size: 0.45rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    .offer-details {
        width: 100%;
        align-items: center;
    }
    
    .offer-bonus {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .rating-container {
        width: 90%;
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
        align-items: center;
        border-left-width: 3px;
    }
    
    .stars-votes {
        align-items: center;
        text-align: center;
    }
    
    .stars {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
    .votes {
        font-size: 0.75rem;
    }
    
    .score-block {
        padding: 6px 15px;
        min-width: 60px;
    }
    
    .score-value {
        font-size: 1.5rem;
    }
    
    .offer-right {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .offer-button {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
        text-align: center;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }
    
    .offer-icons-row {
        gap: 15px;
    }
    
    .offer-icon-st {
        max-width: 28px;
        max-height: 28px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px auto;
        padding: 0 10px;
    }
    
    .stat {
        padding: 25px 15px;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }
    
    .stat::before {
        width: 3px;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
    
    .stat p {
        font-size: 1rem;
    }

    .about-text {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .about-text h2 {
        font-size: 1.8em;
    }
    
    .about-text p {
        font-size: 1rem;
    }

    .form-premium {
        max-width: 600px;
        padding: 30px 25px;
        clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
    }
    
    .form-premium::before {
        height: 3px;
    }
    
    .form-premium__title {
        font-size: 1.6rem;
    }
    
    .form-premium__subtitle {
        font-size: 0.95rem;
    }
    
    .form-premium__field input {
        padding: 15px;
        font-size: 0.95rem;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }
    
    .form-premium__field input:focus + label,
    .form-premium__field input:not(:placeholder-shown) + label {
        padding: 0 6px;
    }
    
    .form-premium__btn {
        padding: 14px 25px;
        font-size: 1.1rem;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }

    .footer {
        padding: 35px 0 15px;
        clip-path: polygon(0 12%, 5% 0, 95% 0, 100% 12%, 100% 100%, 0 100%);
    }
    
    .footer-links {
        gap: 25px;
    }
    
    .footer-links a {
        font-size: 0.9em;
        padding: 6px 12px;
    }
    
    .footer p {
        font-size: 0.85rem;
    }

    .cookie-banner {
        max-width: 800px;
        padding: 18px 22px;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }
    
    .cookie-banner::before {
        width: 4px;
    }
    
    .cookie-banner__content {
        gap: 20px;
    }
    
    .cookie-banner__text {
        font-size: 0.9rem;
    }
    
    .cookie-banner__button {
        padding: 12px 30px;
        font-size: 0.9rem;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }

    .popup-offer__container {
        padding: 35px 25px;
        clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 25px;
        right: 25px;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .header {
        padding: 15px 0;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 5% 100%, 0 90%);
    }
    
    .header-content {
        padding: 0 15px;
    }

    .nav {
        display: none !important;
    }
    
    .header .logo {
        max-height: 32px;
    }
    
    .hero {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2em;
        margin-bottom: 20px;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        font-size: 0.9rem;
        margin: 15px 0;
    }
    
    .hero-features li {
        padding: 8px 10px;
        justify-content: center;
        text-align: center;
        border-left-width: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 30px auto;
    }
    
    .stat {
        padding: 20px 10px;
        clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    }
    
    .stat::before {
        width: 3px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .stat p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .categories {
        gap: 12px;
        margin: 20px auto;
    }
    
    .category-button {
        padding: 8px 20px;
        font-size: 0.75em;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }
    
    .offer {
        padding: 12px;
        margin-bottom: 20px;
        clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    }
    
    .offer-left {
        max-width: 220px;
    }
    
    .offer-logo {
        max-width: auto;
        max-height: auto;
    }
    
    .offer-bonus {
        font-size: 1rem;
    }
    
    .rating-container {
        width: 95%;
        padding: 10px 12px;
    }
    
    .stars {
        font-size: 0.7rem;
    }
    
    .votes {
        font-size: 0.7rem;
    }
    
    .score-value {
        font-size: 1.4rem;
    }
    
    .offer-button {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .offer-icon-st {
        max-width: 24px;
        max-height: 24px;
    }

    .about-text {
        padding: 25px 15px;
        margin: 25px auto;
    }
    
    .about-text h2 {
        font-size: 1.6em;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }

    .form-premium {
        padding: 25px 20px;
        clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    }
    
    .form-premium__title {
        font-size: 1.4rem;
    }
    
    .form-premium__subtitle {
        font-size: 0.9rem;
    }
    
    .form-premium__field input {
        padding: 14px;
        font-size: 0.9rem;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }
    
    .form-premium__btn {
        padding: 12px 22px;
        font-size: 1rem;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }

    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
        clip-path: polygon(0 8%, 5% 0, 95% 0, 100% 8%, 100% 100%, 0 100%);
    }
    
    .footer-links {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.85em;
        padding: 5px 10px;
    }
    
    .footer p {
        font-size: 0.8rem;
    }

    .cookie-banner {
        padding: 15px 18px;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }
    
    .cookie-banner__content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-banner__text {
        font-size: 0.85rem;
    }
    
    .cookie-banner__button {
        padding: 10px 25px;
        font-size: 0.85rem;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }

    .popup-offer__container {
        padding: 30px 20px;
        clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }
}
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 12px 0;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 5% 100%, 0 90%);
    }

    .header-content {
        padding: 0 15px;
    }

    .header .logo {
        max-height: 30px;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-features {
    font-size: 0.7rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 5px 0 0 0;
    padding: 0;
}

.hero-features li {
    padding: 6px 8px;
    justify-content: center;
    text-align: center;
    border-left: 3px solid var(--primary-red);
    background: rgba(255, 59, 59, 0.05);
    border-radius: 0 4px 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-features li svg,
.hero-features li i,
.hero-features li .icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    flex-shrink: 0;
}

    .categories {
        gap: 10px;
        margin: 20px auto;
    }
    
    .category-button {
        padding: 8px 20px;
        font-size: 0.75em;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }
    
    .offer {
        padding: 12px;
        margin-bottom: 15px;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }

    .offer-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .offer-left {
        flex: none;
        width: 100%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        border-left: 0px solid var(--primary-red);
    }

    .offer-header {
        display: none;
    }

    .offer-logo {
        max-width: 140px;
        max-height: 140px;
        padding: 0;
    }

    .offer-bonus {
        font-size: 1rem;
        text-align: center;
        line-height: 1.4;
        padding: 0;
        color: var(--text-primary);
        font-weight: 700;
    }

    .rating-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        margin-top: 0;
        background: rgba(20, 10, 10, 0.5);
        border-left: 0px solid var(--primary-red);
        border-radius: 0 8px 8px 0;
    }

    .stars-votes {
        align-items: center;
        width: 100%;
    }

    .stars {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .votes {
        font-size: 0.65rem;
    }

    .score-block {
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 4px 12px !important;
        min-width: auto;
        width: fit-content;
        margin: 0 auto;
    }

    .score-label {
        font-size: 0.55rem !important;
    }

    .score-value {
        font-size: 1.1rem !important;
    }

    .offer-right {
        flex: none;
        width: 100%;
        gap: 8px;
    }

    .offer-button {
        width: 80%;
        padding: 10px 16px;
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin: 0 auto;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }

    .offer-icons-row {
        gap: 12px;
        justify-content: center;
    }

    .offer-icon-st {
        max-width: 22px;
        max-height: 22px;
    }

    .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 25px auto;
    padding: 0 5px;
}

.stat {
    padding: 15px 10px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    background: linear-gradient(145deg, rgba(40, 18, 18, 0.9), rgba(30, 12, 12, 0.95));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--primary-red);
}

.stat::before {
    width: 3px;
}

.stat h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 59, 59, 0.3);
}

.stat p {
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 400;
}

.about-text {
    padding: 20px 15px;
    margin: 25px auto 15px;
}

.about-text h2 {
    font-size: 1.5em;
    margin-bottom: 12px;
}

.about-text p {
    font-size: 0.85rem;
    line-height: 1.6;
}

    .form-premium {
        padding: 25px 15px;
        clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    }

    .form-premium__title {
        font-size: 1.3rem;
    }

    .form-premium__subtitle {
        font-size: 0.85rem;
    }

    .form-premium__field input {
        padding: 14px 15px;
        font-size: 0.9rem;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }

    .form-premium__field label {
        font-size: 0.9rem;
        left: 15px;
    }

    .form-premium__btn {
        padding: 14px 20px;
        font-size: 1rem;
        clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }

    .form-premium__secure {
        font-size: 0.75rem;
    }

    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
        clip-path: polygon(0 8%, 5% 0, 95% 0, 100% 8%, 100% 100%, 0 100%);
    }

    .footer-links {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        font-size: 0.85em;
        padding: 6px 12px;
    }

    .footer p {
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }

    .cookie-banner {
        padding: 15px;
        clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    }

    .cookie-banner__content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-banner__text {
        font-size: 0.85rem;
    }

    .cookie-banner__button {
        padding: 10px 25px;
        font-size: 0.85rem;
        clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    }

    .popup-offer__container {
        padding: 30px 20px;
        clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    }

    .iti,
    ._phone {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .offer-logo {
        max-width: 120px;
        max-height: 120px;
    }

    .offer-bonus {
        font-size: 0.9rem;
    }

    .offer-button {
        width: 90%;
        font-size: 0.7rem;
        padding: 8px 12px;
    }

    .stars {
        font-size: 0.6rem;
    }

    .score-value {
        font-size: 1rem !important;
    }

    .offer-icon-st {
        max-width: 20px;
        max-height: 20px;
    }

    .stat h3 {
        font-size: 1.8rem;
    }
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease;
}

.age-popup.hidden {
    visibility: hidden;
    opacity: 0;
}

.age-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.age-popup__container {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: linear-gradient(145deg, #1f0f0f, #150a0a);
    border: 2px solid var(--primary-red, #ff3b3b);
    padding: 40px 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
    z-index: 100001;
    animation: popupAppear 0.5s ease;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-popup__icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 59, 59, 0.5));
}

.age-popup__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff3b3b;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-popup__subtitle {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.age-popup__warning {
    background: rgba(255, 59, 59, 0.1);
    border-left: 4px solid #ff3b3b;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-align: left;
    font-family: 'Inter', sans-serif;
    border-radius: 0 8px 8px 0;
}

.age-popup__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.age-popup__btn {
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.age-popup__btn--yes {
    background: #ff3b3b;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 59, 59, 0.3);
}

.age-popup__btn--yes:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 59, 59, 0.5);
}

.age-popup__btn--no {
    background: transparent;
    color: #ff3b3b;
    border: 2px solid #ff3b3b;
}

.age-popup__btn--no:hover {
    background: rgba(255, 59, 59, 0.1);
    transform: translateY(-3px);
}

.age-popup__footer {
    color: #808080;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.age-blocked {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-blocked__container {
    max-width: 500px;
    width: 90%;
    text-align: center;
    padding: 40px 20px;
}

.age-blocked__icon {
    font-size: 6rem;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 59, 59, 0.3));
}

.age-blocked__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ff3b3b;
    margin-bottom: 10px;
}

.age-blocked__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.age-blocked__text {
    color: #b0b0b0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.age-blocked__help {
    color: #808080;
    font-size: 1rem;
    margin-bottom: 20px;
}

.age-blocked__links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.age-blocked__link {
    color: #ff3b3b;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #ff3b3b;
    transition: all 0.3s ease;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.age-blocked__link:hover {
    background: #ff3b3b;
    color: #000;
}

.age-blocked__btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.age-blocked__btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .age-popup__container {
        padding: 30px 20px;
    }
    
    .age-popup__title {
        font-size: 2rem;
    }
    
    .age-popup__subtitle {
        font-size: 1rem;
    }
    
    .age-popup__buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-popup__btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .age-blocked__title {
        font-size: 2.5rem;
    }
    
    .age-blocked__subtitle {
        font-size: 1.5rem;
    }
    
    .age-blocked__text {
        font-size: 1rem;
    }
    
    .age-blocked__links {
        flex-direction: column;
        gap: 10px;
    }
}