/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0e1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.flag {
    height: 25px;
    width: auto;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

.header-actions {
    display: none;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    z-index: 999;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.mobile-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #4CAF50;
}

.btn-outline:hover {
    background: #4CAF50;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #4a5568 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
    position: relative;
}

.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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Platform Info */
.platform-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.experience-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.experience-text ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.experience-text li {
    margin-bottom: 0.5rem;
}

/* Casino Section */
.casino {
    background: linear-gradient(135deg, #2d3561 0%, #4a5568 100%);
    color: white;
}

.casino-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.casino-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.casino-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4CAF50;
}

.game-list {
    margin-top: 2rem;
}

.game-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #4CAF50;
}

.game-item h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

/* Crash Games Section */
.crash-games {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.crash-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.crash-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(76, 175, 80, 0.2);
    font-weight: 600;
    color: #4CAF50;
}

td {
    color: rgba(255, 255, 255, 0.9);
}

/* Sports Section */
.sports {
    background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
    color: white;
}

.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sport-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sport-item i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.sport-item h4 {
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, #4a5568 0%, #2d3561 100%);
    color: white;
}

.bonus-table {
    overflow-x: auto;
    margin: 2rem 0;
}

/* Mobile App Section */
.mobile-app {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.app-section h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.app-section ol, .app-section ul {
    margin-left: 2rem;
}

.app-section li {
    margin-bottom: 0.5rem;
}

/* Payments Section */
.payments {
    background: linear-gradient(135deg, #2d3561 0%, #4a5568 100%);
    color: white;
}

.payment-tables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.payment-section h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Support Section */
.support {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.support-channels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.channel {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.channel h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

/* Registration Section */
.registration {
    background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
    color: white;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.registration-steps h3, .social-registration h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.registration-steps ol, .registration-steps ul {
    margin-left: 2rem;
}

.registration-steps li {
    margin-bottom: 0.5rem;
}

.social-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-option i {
    font-size: 1.5rem;
    color: #4CAF50;
}

/* Security Section */
.security {
    background: linear-gradient(135deg, #4a5568 0%, #2d3561 100%);
    color: white;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.security-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-feature i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.security-feature h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.advantage {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;255,255,0.1);
}

.advantage i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.advantage h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

/* Tips Section */
.tips {
    background: linear-gradient(135deg, #2d3561 0%, #4a5568 100%);
    color: white;
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.tips-section h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.tips-section ol, .tips-section ul {
    margin-left: 2rem;
}

.tips-section li {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    opacity: 0.9;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
    color: white;
    text-align: center;
}

.conclusion-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 35px;
}

.footer-logo .flag {
    height: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4CAF50;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .crash-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-tables {
        grid-template-columns: 1fr;
    }
    
    .support-channels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .registration-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .conclusion-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-options {
        flex-direction: row;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sports-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .support-channels {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .security-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1f3a;
}

::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #45a049;
}