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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 10000;
    display: none;
    max-width: 400px;
    margin: 0 auto;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

.cookie-btn.accept {
    background: #ff69b4;
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid #ccc;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

.diamond-icon {
    font-size: 1.5rem;
}

.brand-text {
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff69b4;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 4rem 2rem;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #000;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: #ff1493;
    border: 2px solid #ff1493;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    background: #ff1493;
    color: #fff;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Casino Interior */
.casino-interior {
    padding: 0 15px 10px 15px;
}

.casino-interior-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.casino-interior img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

/* About Section */
.about {    
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #FF6EAD66;
    padding: 2rem;
    border-radius: 20px;
}

.about h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.about p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.8;
}

.stats {
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.stat-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-number {
    font-size: 1.5rem;
}

/* Game Feature */
.game-feature {
    padding: 4rem 2rem;
    background: white;
}

.game-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.game-text {
    flex: 1;
}

.game-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.game-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.game-text ul {
    margin-left: 20px;
}

.game-text ul li {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.game-text ol {
}

.game-text ol li {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.game-button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.game-button:hover {
    background: #ff1493;
}

.game-image {
    flex: 1;
}

.game-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Why Play Section */
.why-play {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.why-play h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FF6EAD66;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Platform Advantages */
.platform-advantages {
    padding: 4rem 2rem;
    background: white;
}

.platform-advantages h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.advantages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    padding: 2rem;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #FF6EAD66;
    padding: 4rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contact-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
}

#contact textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #ff1493;
}

/* Footer */
.footer {
    background: #fff;
    color: #000;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ff69b4;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-badge {
    background: #ff69b4;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.disclaimer h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff69b4;
}

.disclaimer p {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .game-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .about,
    .why-play,
    .platform-advantages,
    .contact {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .about h2,
    .why-play h2,
    .platform-advantages h2 {
        font-size: 1.5rem;
    }
    
    .game-text h2,
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}


/* Стили попапа */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: between;
    align-items: center;
    position: relative;
}

.popup-title {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.game-iframe {
    width: 800px;
    height: 600px;
    border: none;
    display: block;
}

/* Адаптивность */
@media (max-width: 850px) {
    .game-iframe {
        width: 90vw;
        height: 60vh;
    }
}

@media (max-width: 600px) {
    .game-iframe {
        width: 95vw;
        height: 50vh;
    }
    
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-title {
        font-size: 16px;
    }
}

/* Age Verification Popup */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.age-verification-overlay.hidden {
    display: none;
}

.age-verification-content {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-verification-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-verification-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    min-width: 120px;
}

.age-btn.accept {
    background: white;
    color: #ff1493;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.age-btn.accept:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.age-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.age-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .age-verification-content {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .age-verification-content h2 {
        font-size: 1.5rem;
    }
    
    .age-verification-content p {
        font-size: 0.9rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}

/* Cookie Popup */