:root {
    --primary-dark: #0a0514;
    --primary-purple: #1a0b2e;
    --secondary-purple: #2d1b4e;
    --accent-purple: #4a2b7a;
    --gold-primary: #ffd700;
    --gold-secondary: #ffaa00;
    --gold-dark: #b8860b;
    --pink-accent: #ff69b4;
    --pink-light: #ff1493;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --glass-bg: rgba(45, 27, 78, 0.4);
    --glass-border: rgba(255, 215, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 50%, var(--secondary-purple) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
        100px 200px #fff, 400px 500px #fff, 800px 100px #fff,
        1200px 800px #fff, 1500px 300px #fff, 300px 900px #fff,
        600px 600px #fff, 900px 400px #fff, 1300px 100px #fff,
        200px 700px #fff, 500px 200px #fff, 1100px 600px #fff;
    animation: animStar 50s linear infinite;
}

.stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 
        200px 300px rgba(255,255,255,0.8), 600px 100px rgba(255,255,255,0.8),
        1000px 500px rgba(255,255,255,0.8), 1400px 200px rgba(255,255,255,0.8),
        300px 800px rgba(255,255,255,0.8), 700px 400px rgba(255,255,255,0.8);
    animation: animStar 100s linear infinite;
}

.stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 
        500px 100px rgba(255,215,0,0.6), 900px 700px rgba(255,105,180,0.6),
        300px 500px rgba(255,255,255,0.6);
    animation: animStar 150s linear infinite;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,105,180,0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

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

h1, h2, h3, h4 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.highlight {
    color: var(--pink-accent);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.main-header {
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, rgba(10,5,20,0.8), transparent);
}

.site-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--gold-primary), var(--pink-accent), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 2px;
}

.hero {
    padding: 60px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, var(--glass-bg), rgba(255,215,0,0.1));
    border: 1px solid var(--gold-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    box-shadow: var(--shadow-glow);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.princess-frame {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary), var(--pink-accent));
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(0,0,0,0.2);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.frame-inner {
    width: 100%;
    height: 100%;
    background: var(--primary-purple);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,215,0,0.3);
}

.slot-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.gem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
    align-content: center;
}

.gem {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 15px currentColor;
    animation: gemGlow 3s ease-in-out infinite;
}

.gem.blue { background: radial-gradient(circle at 30% 30%, #4facfe, #00f2fe); color: #4facfe; animation-delay: 0s; }
.gem.pink { background: radial-gradient(circle at 30% 30%, #ff69b4, #ff1493); color: #ff69b4; animation-delay: 0.5s; }
.gem.gold { background: radial-gradient(circle at 30% 30%, #ffd700, #ffaa00); color: #ffd700; animation-delay: 1s; }
.gem.green { background: radial-gradient(circle at 30% 30°, #43e97b, #38f9d7); color: #43e97b; animation-delay: 1.5s; }
.gem.red { background: radial-gradient(circle at 30% 30%, #fa709a, #fee140); color: #fa709a; animation-delay: 2s; }
.gem.purple { background: radial-gradient(circle at 30% 30%, #a18cd1, #fbc2eb); color: #a18cd1; animation-delay: 2.5s; }

@keyframes gemGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 25px currentColor; }
}

.multiplier-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255,215,0,0.9), rgba(255,105,180,0.9));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
    border: 3px solid white;
    box-shadow: 0 0 30px rgba(255,215,0,0.6);
    animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

.features-grid {
    padding: 60px 0;
    background: linear-gradient(to bottom, transparent, rgba(10,5,20,0.5), transparent);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.content-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255,215,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.step h4 {
    color: var(--pink-accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detailed-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.detailed-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.casinos {
    background: linear-gradient(to bottom, rgba(10,5,20,0.3), transparent);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.casino-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.casino-card:hover {
    border-color: var(--pink-accent);
    box-shadow: 0 0 30px rgba(255,105,180,0.2);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.casino-header h3 {
    color: var(--gold-primary);
    font-size: 1.4rem;
}

.rating {
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.casino-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255,215,0,0.4);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gold-primary);
    list-style: none;
    position: relative;
    padding-right: 50px;
    font-family: 'Cinzel', serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '✦';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink-accent);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0;
    padding-top: 15px;
}

.main-footer {
    background: rgba(10,5,20,0.9);
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    margin-top: 60px;
}

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

.disclaimer {
    color: var(--pink-accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .princess-frame {
        width: 280px;
        height: 280px;
    }
    
    .site-title {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .casino-cards {
        grid-template-columns: 1fr;
    }
    
    .princess-frame {
        width: 250px;
        height: 250px;
    }
    
    .gem {
        width: 45px;
        height: 45px;
    }
    
    .multiplier-orb {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}
.styled-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--pink-accent));
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.styled-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}