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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    padding: 10px 0;
}

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

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.tagline {
    font-size: 0.8rem;
    color: #00ccff;
    margin-top: 2px;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #00ff88;
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 204, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px #00ff88;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Section */
.casinos-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
}

.casinos-section::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="circuit" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M10 10h80v80h-80z" fill="none" stroke="rgba(0,255,136,0.05)" stroke-width="1"/><circle cx="20" cy="20" r="2" fill="rgba(0,255,136,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(0,255,136,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.casino-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.casino-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
}

.casino-item:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.casino-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 0.9rem;
    color: #888;
}

.casino-bonus {
    text-align: center;
    background: linear-gradient(45deg, #ff0080, #ff4040);
    padding: 0.8rem;
    border-radius: 10px;
    margin-left: 1rem;
}

.bonus-percent {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.bonus-text {
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casino-offer {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-text {
    font-weight: 600;
    color: #00ff88;
    font-size: 1.1rem;
}

.casino-features {
    margin-bottom: 2rem;
}

.feature {
    padding: 0.5rem 0;
    color: #cccccc;
    font-size: 0.95rem;
    border-bottom: 1px solid #333;
}

.feature:last-child {
    border-bottom: none;
}

.casino-actions {
    text-align: center;
}

.payment-methods {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.payment-card {
    width: 32px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 255, 136, 0.2);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.payment-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 255, 136, 0.4);
    border-color: #00ff88;
}

.play-button {
    width: 100%;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.5);
}

.play-button.primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.play-button.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.terms {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Guide Section */
.guide-section {
    padding: 100px 0;
    background: #1a1a1a;
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-intro {
    margin-bottom: 4rem;
}

.guide-intro p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guide-intro h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00ff88;
    margin: 3rem 0 1rem;
    text-transform: uppercase;
}

.steps-container h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    color: #000;
    border-radius: 50%;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.faq-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

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

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

.faq-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.faq-question i {
    color: #00ff88;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-question i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #00ff88;
    padding: 60px 0 20px;
}

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

.footer-brand {
    text-align: center;
}

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

.footer-logo i {
    font-size: 2rem;
    color: #00ff88;
}

.footer-brand p {
    color: #888;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.1rem;
}

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

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

.footer-column ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00ff88;
}

.footer-column p {
    color: #888;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .casino-rank {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .rank-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .casino-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .casino-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .casino-item {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
} 