/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #111728;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #d81b60, #ec407a);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #e91e63;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
}

.btn-game {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    font-size: 14px;
    padding: 14px 28px;
}

.btn-game:hover {
    background: linear-gradient(45deg, #d81b60, #ec407a);
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.cookie-content p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-accept, .cookie-refuse {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
}

.cookie-refuse {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
}

.cookie-accept:hover, .cookie-refuse:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #d81b60, #ec407a);
}

/* Header */
.header {
    padding: 15px 0;
    position: relative;
    z-index: 999;
    background: rgba(255, 255, 255, 0.06);
}

.nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 18px;
    color: #000;
    border-radius: 42px;
background: #FFF;
    padding: 6px 10px;
    border-radius: 25px;
    border: 2px solid #34495e;
    text-decoration: none;
}

.controller-icon {
    font-size: 20px;
}

.nav-menu {
    display: flex;
    gap: 0;
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 25px;
    padding: 5px;
}

.nav-link {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    display: flex;
    align-items: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 65% 400px;
    gap: 80px;
    align-items: center;
    width: 100%;
    border-radius: 40px;
background: rgba(255, 255, 255, 0.05);
padding: 30px;
position: relative;
overflow: hidden;
}

.hero-text h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 30px;
    color: white;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
    width: 90%;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
}

.hero-image img {
   width: 100%;
   display: block;
}

/* D-pad */
.game-controller::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #ffffff, #e0e0e0);
    border-radius: 10px;
    box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

/* Action buttons */
.game-controller::after {
    content: '';
    position: absolute;
    top: 80px;
    right: 80px;
    width: 18px;
    height: 18px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 
        30px 0 0 #4ecdc4,
        0 30px 0 #ffe66d,
        30px 30px 0 #95e1d3,
        15px 15px 0 #a8e6cf;
}

/* Analog sticks */
.game-controller {
    overflow: visible;
}

.game-controller:hover {
    transform: translateY(-5px) rotateX(10deg) rotateY(-10deg);
}

/* Controller additional elements */
.controller-stick {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #404040, #2a2a2a);
    border-radius: 50%;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.left-stick {
    bottom: 50px;
    left: 60px;
}

.right-stick {
    bottom: 80px;
    right: 60px;
}

.controller-trigger {
    position: absolute;
    width: 80px;
    height: 15px;
    background: linear-gradient(145deg, #6b5b95, #5a5a8f);
    border-radius: 20px;
    top: -8px;
}

.left-trigger {
    left: 40px;
}

.right-trigger {
    right: 40px;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotateX(5deg) rotateY(-5deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    50% { 
        transform: translateY(-15px) rotateX(-5deg) rotateY(5deg);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    }
}


/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
}

.about-inner {
    border-radius: 40px;
background: rgba(255, 255, 255, 0.05);
padding: 30px;
}

.game-icons {
    margin-bottom: 30px;
}

.game-icon {
    font-size: 60px;
    opacity: 0.7;
}

.game-icon span {
    font-size: 60px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: white;
}

.about-description {
    font-size: 16px;
    color: #bdc3c7;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    border-radius: 40px;
background: rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.feature p {
    color: #bdc3c7;
    font-size: 14px;
}

/* Games Section */
.games {
    padding: 80px 0;
}

.games h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.game-card {
    border-radius: 40px;
background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    display: flex;
    gap: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.game-image {
    flex-shrink: 0;
    width: 205px;
   min-height: 258px;
    border-radius: 10px;
 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.game-info {
    display: flex;
    flex-direction: column;
}

.game-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.game-category {
    color: #e91e63;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.game-description {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 0 1 100%;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    text-align: center;
   
}

.disc-inner {
    border-radius: 40px;
background: rgba(255, 255, 255, 0.06);
padding: 30px;
}

.disclaimer h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: white;
}

.disclaimer p {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer .highlight {
    color: #e91e63;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
}

.disclaimer-notice {
    border-radius: 40px;
background: #FF78B9;
    padding: 20px;
 
    margin: 30px auto;
    max-width: 600px;
}

.disclaimer-notice p {
    color: white;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #f06292;
}

.copyright {
    color: #7f8c8d;
    font-size: 14px;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #2c3e50;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.popup-content h3 {
    color: #e91e63;
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-content p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.popup-close {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

.popup-close:hover {
    background: linear-gradient(45deg, #d81b60, #ec407a);
}

/* Contact Page Styles */
.contact-hero {
    padding: 100px 0 50px;
    text-align: center;
}

.contact-inner {
    border-radius: 40px;
background: rgba(255, 255, 255, 0.05);
padding: 30px;
max-width: 1000px;
width: 100%;
margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form-section {
    padding: 50px 0;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: white;
}

.contact-form {
    width: 100%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: 15px;
}

.form-submit {
    text-align: right;
    margin-top: 30px;
}

.contact-info {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-content {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 30px;
background: rgba(255, 255, 255, 0.05);
padding: 20px;
}

.contact-icon {
    background: linear-gradient(45deg, #e91e63, #f06292);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-icon span {
    font-size: 24px;
}

.contact-details h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-details p {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 5px;
}

.support-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.support-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.support-section p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Loading States */
.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Form Styles */
.form-group input:focus,
.form-group textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .hero {
        margin: 15px;
        padding: 80px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text {
        width: 100%;
        position: relative;
        z-index: 3;
    }
    
    .hero-text h1 {
        
    }
    
    .game-controller {
        width: 280px;
        height: 280px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .games h2 {
        font-size: 36px;
    }
    
    .game-card {
        padding: 25px;
    }
    
    .game-image {
        
    }
}

@media (max-width: 768px) {
    .burger-btn {
        
    }
    
  
    
    .hero {
        padding: 60px 0;
        min-height: auto;
        margin: 10px;
        border-radius: 20px;
    }
    
    .hero-text h1 {
        font-size: 5rem;
        letter-spacing: -1px;
    }

    .hero-text p {
        width: 65%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .game-controller {
        width: 220px;
        height: 220px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .games h2 {
        font-size: 32px;
    }
    
    .game-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .game-image {
        max-width: 200px;
        min-height: 200px;
        width: 100%;
       aspect-ratio: 1;
        align-self: center;
    }
    
    .game-info h3 {
        font-size: 24px;
    }
    
    .game-description {
        font-size: 14px;
    }
    
    .btn-game {
        align-self: center;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .cookie-consent {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-accept, .cookie-refuse {
        width: 100%;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 14px;
        width: 100%;
    }

    .hero-image {
        right: -20%;
        bottom: 25%;
    }
    
    .about h2,
    .games h2,
    .disclaimer h2 {
        font-size: 28px;
    }
    
    .game-controller {
        font-size: 100px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .popup-content {
        margin: 15px;
        padding: 20px;
    }
}

iframe {
    margin: 0;
    width: 100%;
    aspect-ratio: 11 / 6;
    border-radius: 8px;
}



              .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;
                }

                