/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-title {
    font-size: 48px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    z-index: 10000;
    border-top: 1px solid #333;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #B8B8B8;
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-content a {
    color: #5A7FFF;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #5A7FFF;
    color: #FFFFFF;
}

.btn-cookie.accept:hover {
    background: #4A6FEF;
}

.btn-cookie.refuse {
    background: transparent;
    color: #5A7FFF;
    border: 1px solid #5A7FFF;
}

.btn-cookie.refuse:hover {
    background: #5A7FFF;
    color: #FFFFFF;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
   text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #B8B8B8;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5A7FFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5A7FFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #5A7FFF;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(90, 127, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 72px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-description {
    color: #B8B8B8;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #5A7FFF;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #4A6FEF;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #5A7FFF;
    border: 1px solid #5A7FFF;
}

.btn-secondary:hover {
    background: #5A7FFF;
    color: #FFFFFF;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.knight-helmet {
    width: 500px;
    height: 600px;
    background: linear-gradient(135deg, rgba(90, 127, 255, 0.2) 0%, rgba(30, 40, 80, 0.3) 100%);
    border-radius: 50px;
    position: relative;
    border: 2px solid rgba(90, 127, 255, 0.3);
    box-shadow: 0 0 50px rgba(90, 127, 255, 0.2);
}

.knight-helmet::before {
    content: '⚔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    opacity: 0.6;
    filter: drop-shadow(0 0 20px rgba(90, 127, 255, 0.5));
}

.knight-helmet::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(90, 127, 255, 0.2);
    border-radius: 60px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* About Section */
.about {
    padding: 120px 0;
  
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.warrior-character {
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.3) 0%, rgba(150, 50, 50, 0.4) 100%);
    border-radius: 20px;
    position: relative;
    border: 2px solid rgba(255, 100, 100, 0.4);
    box-shadow: 0 0 40px rgba(255, 100, 100, 0.2);
}

.warrior-character::before {
    content: '🗡️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(255, 100, 100, 0.5));
}

.about-text p {
    color: #B8B8B8;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: #B8B8B8;
    font-size: 14px;
    margin: 0;
}

/* Featured Games Section */
.featured-games {
    padding: 120px 0;
    background: rgba(10, 11, 15, 0.8);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border-radius: 40px;
background: rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 127, 255, 0.2);
}

.game-image {
    height: 236px;
    border-radius: 10px;

box-shadow: 4px 4px 9px 0 rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropz-img {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
}

.phoenix-img {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.buffalo-img {
    background: linear-gradient(135deg, #FFE066 0%, #FF9472 100%);
}

.respin-img {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
}

.platooners-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.poltava-img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.game-image::before {
   
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.game-category {
    color: #5A7FFF;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.game-description {
    color: #B8B8B8;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-game {
    background: #5A7FFF;
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-game:hover {
    background: #4A6FEF;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
   
}

.disclaimer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.disclaimer-text {
    max-width: 500px;
    width: 100%;
}

.disclaimer-text p {
    color: #B8B8B8;
    margin-bottom: 20px;
    font-size: 16px;
}

.disclaimer-text .highlight {
    color: #5A7FFF;
    font-weight: 500;
}

.disclaimer-text strong {
    color: #FFFFFF;
}

.disclaimer-image {
    display: flex;
    justify-content: center;
    max-width: 532px;
    width: 100%;
}

.disclaimer-image img {
    max-width: 100%;
    width: 100%;
}

.warning-knight {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.warning-knight::before {
    content: '⚠️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.8;
}

/* Contact Hero Section */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
   
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 64px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.contact-hero-content p {
    color: #B8B8B8;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-knight-helmet {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, rgba(90, 127, 255, 0.3) 0%, rgba(30, 40, 80, 0.4) 100%);
    border-radius: 40px;
    position: relative;
    border: 2px solid rgba(90, 127, 255, 0.4);
    box-shadow: 0 0 60px rgba(90, 127, 255, 0.3);
}

.contact-knight-helmet::before {
    content: '⚔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.7;
    filter: drop-shadow(0 0 30px rgba(90, 127, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

.contact-knight-helmet::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(90, 127, 255, 0.3);
    border-radius: 50px;
    animation: pulse 3s ease-in-out infinite;
}

/* Contact Info and Form Section */
.contact-section {
    padding: 80px 0;
    background: rgba(10, 11, 15, 0.8);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 127, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(90, 127, 255, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.contact-details p {
    color: #B8B8B8;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-details p:first-of-type {
    color: #FFFFFF;
    font-weight: 500;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section h2 {
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5A7FFF;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #5A7FFF;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #4A6FEF;
    transform: translateY(-2px);
}

.we-are-here {
    padding: 80px 0;
    background: rgba(10, 11, 15, 0.8);
}

.we-are-here h2 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.we-are-here p {
    color: #B8B8B8;
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 800px;
}

.disclaimer-notice {
    padding: 60px 0;
    text-align: center;
}

.disclaimer-notice p {
    color: #B8B8B8;
    margin-bottom: 10px;
}

.disclaimer-notice strong {
    color: #FFFFFF;
}

/* Footer */
.footer {
    background: rgba(10, 11, 15, 0.9);
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
 
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #5A7FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.copyright {

    color: #666;
    font-size: 14px;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
}

.popup-content h3 {
    color: #5A7FFF;
    margin-bottom: 15px;
    font-size: 24px;
}

.popup-content p {
    color: #B8B8B8;
}



/* Enhanced Animations */
.game-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-image::before {
    transform: translate(-50%, -50%) scale(1.2);
    transition: transform 0.3s ease;
}

/* Form Enhancement Styles */
.form-group {
    position: relative;
}

.form-group.focused label {
    color: #5A7FFF;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(90, 127, 255, 0.1);
}

/* Button Ripple Effect */
.btn-primary, .btn-secondary, .btn-game, .btn-submit {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Additional Interactive Elements */
.contact-method {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Hero Section Enhancements */
.hero-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(90, 127, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

/* Feature Items Enhancement */
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(90, 127, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.feature-item {
    position: relative;
    overflow: hidden;
}

.feature-item:hover::before {
    opacity: 1;
}

/* Game Cards Enhancement */
.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-image::after {
    opacity: 1;
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.knight-helmet::before,
.warrior-character::before,
.warning-knight::before,
.contact-knight-helmet::before {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Mobile Cookie Banner */
@media (max-width: 480px) {
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .cookie-content p {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .knight-helmet {
        width: 400px;
        height: 480px;
    }
    
    .contact-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 48px;
    }
    
    .contact-knight-helmet {
        width: 350px;
        height: 420px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .warrior-character {
        width: 300px;
        height: 350px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .disclaimer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 11, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .knight-helmet {
        width: 300px;
        height: 360px;
    }
    
    .warrior-character {
        width: 250px;
        height: 300px;
    }
    
    .contact-hero-content h1 {
        font-size: 40px;
    }
    
    .contact-knight-helmet {
        width: 280px;
        height: 340px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-content h1 {
        font-size: 40px;
    }
    
    .knight-helmet,
    .warrior-character,
    .warning-knight,
    .contact-knight-helmet {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .knight-helmet {
        height: 300px;
    }
    
    .warrior-character {
        height: 320px;
    }
    
    .contact-knight-helmet {
        height: 300px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}



              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                