/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: linear-gradient(135deg, #020E28 0%, #020E28 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, #2c3e80 0%, #1a2b5c 100%);
    margin: 15% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.modal-content p {
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #2c3e80 0%, #1a2b5c 100%);
    padding: 30px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cookie-content a {
    color: #2196F3;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #020E28;
    backdrop-filter: blur(10px);
}

.header-top {
    padding: 10px 0;
    text-align: center;
    
}

.age-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.age-icon {
    background: #ff5722;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-brand {
    text-decoration: none;
    color: #fff;
}

.nav-brand h1 {
    font-size: 28px;
    font-weight: 800;
   
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2196F3;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 20px auto;
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
}

.welcome-text p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 16px;
}

.welcome-image {
    text-align: center;
}

.welcome-image img {
    width: 100%;
}

.game-preview {
    background: linear-gradient(135deg, #4a6cf7 0%, #667eea 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 30px;
background: #1F377F;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    background: #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.testimonial-content h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-content p {
    opacity: 0.9;
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-content .btn {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

/* Social Games */
.social-games {
    padding: 80px 0;
}

.social-games h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.games-grid .game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: 30px;
border: 1px solid #1F377F;
padding: 24px;
    transition: transform 0.3s ease;
}

.games-grid .game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    border-radius: 14px;
    overflow: hidden;
  width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.game-image img {
    width: 100%;
}

.game-image.sea-hunter {
    background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
}

.game-image.laragon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.game-image.terminon {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.game-image.super-flip {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
}

.game-info {
    padding: 25px;
}

.game-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.game-info p {
    opacity: 0.7;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.contact-section > p {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .btn {
    width: 100%;
    margin-top: 20px;
}

.disclaimer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 40px;
}

.footer-info p {
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-icons {
    margin-bottom: 30px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gamcare-badge,
.therapy-badge,
.gambleaware-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    margin-bottom: 20px;
    font-size: 12px;
    opacity: 0.7;
}

.app-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: white;
    text-decoration: none;
    opacity: 0.6;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .welcome-text h2,
    .about-section h2,
    .social-games h2,
    .contact-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 43, 92, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 24px;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .platform-icons {
        gap: 15px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .welcome-section,
    .testimonials,
    .about-section,
    .social-games,
    .contact-section {
        padding: 60px 0;
    }
    
    .welcome-text h2,
    .about-section h2,
    .social-games h2,
    .contact-section h2 {
        font-size: 28px;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px 15px;
    }
    
    .age-notice {
        flex-direction: column;
        gap: 5px;
    }
    
    .age-notice span:last-child {
        font-size: 12px;
    }
}

/* Show modals when active */
.modal.show {
    display: block;
}

.cookie-consent.show {
    display: block;
}

iframe {
    width: 100%;
    aspect-ratio: 10 / 6;
}

.game-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about {
    padding: 100px 0;
}

              .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;
                }

                