/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-overlay.hidden {
    display: none;
}

.popup-content {
    background: linear-gradient(135deg, #2a2a3e 0%, #1e2a4e 100%);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.popup-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #b8b8b8;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-accept {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.btn-learn {
    background: transparent;
    color: white;
    border: 2px solid #8b5cf6;
}

.btn-learn:hover {
    background: #8b5cf6;
}

.btn-enter {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-enter:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.btn-exit {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-exit:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* Header Styles */
.header {
    background: #1a1a2e;
    padding: 15px 0 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fbbf24;
    position: relative;
}

.slot-number {
    color: #1a1a2e;
    font-weight: 900;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-text {
    color: #fbbf24;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #8b5cf6;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.warn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #1B1122;
    padding: 10px;
}

.warning-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
   
    max-width: fit-content;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.warning-icon {
    background: #ffffff;
    color: #dc2626;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    flex-shrink: 0;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-visual, .about-visual, .company-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-visual::before, .about-visual::before, .company-visual::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(42, 42, 62, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 80px 0;
}

.games h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.games-subtitle {
    text-align: center;
    color: #b8b8b8;
    margin-bottom: 50px;
    font-size: 18px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.game-card {
    background: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
   
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    position: relative;
}

.game-image img {
    width: 100%;
    display: block;
}

.mirror-poker {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
}

.baron-games {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.game-content {
    padding: 20px;
    text-align: center;
}

.game-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.features-list strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.features-list p {
    color: #b8b8b8;
    line-height: 1.6;
}

.about-image {
    max-width: 546px;
    width: 100%;
}

.about-image img {
    width: 100%;
}

.company-image {
    max-width: 546px;
    width: 100%;
}

.company-image img {
    width: 100%;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.company-text p {
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(42, 42, 62, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.author-name {
    font-weight: 600;
    color: #ffffff;
}

.testimonial-card p {
    color: #b8b8b8;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(42, 42, 62, 0.6);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8b8b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.contact-note {
    text-align: center;
    color: #b8b8b8;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(26, 26, 46, 0.8);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-disclaimer h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #a855f7;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    
    

    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #b8b8b8;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .about-content,
    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .company-content {
        grid-template-columns: 1fr;
    }
    
    .company-image {
        order: -1;
    }
    
    .casino-elements {
        opacity: 0.2;
    }
    
    .playing-cards,
    .dice-container,
    .roulette-wheel,
    .chips {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        padding: 20px;
        transform: translateY(-140%);
        transition: transform 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 100;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .warning-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
       
    }
    
    .warning-badge span {
        font-size: 13px;
    }
    
    .why-us h2,
    .games h2,
    .about-text h2,
    .company-text h2,
    .testimonials h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links,
    .footer-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-visual,
    .about-visual,
    .company-visual {
        height: 250px;
    }
    
    .casino-elements {
        opacity: 0.15;
    }
    
    .playing-cards,
    .dice-container,
    .roulette-wheel,
    .chips {
        transform: scale(0.6);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .popup-content h2 {
        font-size: 24px;
    }
    
    .feature-card,
    .testimonial-card,
    .game-card {
        margin: 0 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .slot-icon {
        width: 35px;
        height: 35px;
    }
    
    .slot-number {
        font-size: 12px;
    }
    
    .warning-badge {
        margin-bottom: 30px;
        padding: 12px 16px;
    }
    
    .warning-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .casino-elements {
        display: none;
    }
}



.games-section {
    padding: 80px 0;
}

.game-frame {
    width: 100%;
    aspect-ratio: 110 / 62;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.iframe {
    width: 100%;
    height: 100%;
}

              .page {
                padding: 180px 0 80px;
              }
              
              .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;
                }

                