/* Lucky Spin 777 - Luxury Entertainment CSS */
/* Premium Gaming Platform Styles */

:root {
    /* Color Palette */
    --primary-black: #000000;
    --secondary-gold: #C9A14C;
    --accent-red: #B71C1C;
    --background-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-gold: #C9A14C;
    --text-muted: #cccccc;
    --gradient-gold: linear-gradient(135deg, #C9A14C 0%, #FFD700 50%, #C9A14C 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --shadow-gold: 0 0 20px rgba(201, 161, 76, 0.3);
    --shadow-black: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-numbers: 'Orbitron', monospace;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --card-padding: 30px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 161, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(183, 28, 28, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(201, 161, 76, 0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-gold);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 161, 76, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-black);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-gold);
    background: rgba(201, 161, 76, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 161, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gold);
    border: 2px solid var(--text-gold);
}

.btn-secondary:hover {
    background: var(--text-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 180px;
}

.btn-cta {
    padding: 18px 36px;
    font-size: 1.2rem;
    min-width: 200px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-glow {
    left: 100%;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-gold);
    color: var(--text-gold);
}

.btn-register {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-gold);
    transition: var(--transition-smooth);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item {
    color: var(--text-muted);
}

.breadcrumb-link {
    color: var(--text-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-link:hover {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 70%, rgba(201, 161, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(183, 28, 28, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* Force floating elements to be visible */
.hero .floating-elements,
.hero .casino-chip,
.hero .diamond {
    opacity: 0.8 !important;
    visibility: visible !important;
    display: block !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 1;
}

.casino-chip {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
    opacity: 0.8 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 2;
}

.casino-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-black);
    border-radius: 50%;
}

.chip-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.chip-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.chip-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.diamond {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-red);
    transform: rotate(45deg);
    animation: sparkle 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(183, 28, 28, 0.5);
    opacity: 0.9 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 2;
}

.diamond-1 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.diamond-2 {
    bottom: 40%;
    left: 15%;
    animation-delay: 3s;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    display: block;
}

.hero-title br {
    display: block;
    margin: 0.3em 0;
}

.highlight {
    color: var(--text-gold);
    text-shadow: 0 0 30px rgba(201, 161, 76, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.jackpot-counter {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--text-gold);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.jackpot-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.jackpot-amount {
    font-family: var(--font-numbers);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-gold);
    text-shadow: 0 0 20px rgba(201, 161, 76, 0.5);
    margin-bottom: 0.5rem;
}

.jackpot-timer {
    font-size: 0.9rem;
    color: var(--accent-red);
}

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

.roulette-wheel {
    width: 300px;
    height: 300px;
    position: relative;
    animation: rotate 20s linear infinite;
}

.wheel-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.wheel-numbers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
}

.number {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-black);
    background: var(--text-light);
    border-radius: 50%;
    transform-origin: 150px 150px;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ball {
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: bounce 2s ease-in-out infinite;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Introduction */
.brand-intro {
    background: rgba(0, 0, 0, 0.5);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(201, 161, 76, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(201, 161, 76, 0.2);
}

.stat-number {
    font-family: var(--font-numbers);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Platform Features */
.platform-features {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    padding: var(--card-padding);
    border-radius: 20px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Icon Symbol Styles */
.icon-symbol {
    font-size: 2.5rem;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-symbol {
    font-size: 2rem;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-icon-small {
    font-size: 1.2rem;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-title {
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.feature-description {
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Registration Process */
.registration-process {
    background: rgba(0, 0, 0, 0.5);
}

.process-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-text h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
}

.process-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(201, 161, 76, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(201, 161, 76, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Advantages & Security */
.advantages-security {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    transition: var(--transition-smooth);
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-gold);
    box-shadow: var(--shadow-gold);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
}

.advantage-item h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.advantage-item p {
    color: var(--text-muted);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    transition: var(--transition-smooth);
}

.badge-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-gold);
}

.badge-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-gold);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: rgba(0, 0, 0, 0.5);
}

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

.faq-item {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: rgba(201, 161, 76, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-gold);
    transition: var(--transition-smooth);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: 
        radial-gradient(circle at 50% 50%, rgba(201, 161, 76, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-icon-small {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(201, 161, 76, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gold);
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(201, 161, 76, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--text-gold);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--text-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 161, 76, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Footer Badge Icon Styles */
.footer-badge {
    font-size: 1.5rem;
    color: var(--text-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.footer-badge:hover {
    transform: scale(1.1);
    color: var(--text-light);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 1;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.7;
        transform: rotate(45deg) scale(1);
    }
    25% {
        opacity: 1;
        transform: rotate(45deg) scale(1.1);
    }
    50% {
        opacity: 0.9;
        transform: rotate(45deg) scale(1.3);
    }
    75% {
        opacity: 1;
        transform: rotate(45deg) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-content,
    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .roulette-wheel {
        width: 250px;
        height: 250px;
    }
    
    .number {
        transform-origin: 125px 125px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-actions {
        gap: 1rem;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--text-gold);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(201, 161, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(183, 28, 28, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
}

.page-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Content sections */
.privacy-content,
.terms-content,
.disclaimer-content {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.privacy-intro,
.terms-intro,
.disclaimer-intro {
    background: rgba(201, 161, 76, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.privacy-sections,
.terms-sections,
.disclaimer-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(201, 161, 76, 0.1);
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--text-light);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* About Us specific styles */
.about-story {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--text-gold);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.6;
}

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

.story-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
}

.mission-values {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-gold);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
}

.value-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Support page styles */
.support-options {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.support-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-gold);
    box-shadow: var(--shadow-gold);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
}

.support-icon .icon-symbol {
    font-size: 2.5rem;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.support-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.online {
    background: #4CAF50;
}

.status-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.support-info {
    margin-top: 1rem;
}

.response-time,
.phone-number {
    color: var(--text-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.support-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.contact-info {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 161, 76, 0.2);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-gold);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
}

.contact-icon .icon-symbol {
    font-size: 2rem;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--text-gold);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--text-light);
}

.contact-hours {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Live chat widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--text-gold);
    border-radius: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 1rem;
    border-radius: 13px 13px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-weight: 700;
}

.chat-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-black);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 350px;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    max-width: 80%;
}

.chat-message.user {
    background: var(--gradient-gold);
    color: var(--primary-black);
    margin-left: auto;
    text-align: right;
}

.chat-message.bot {
    background: rgba(201, 161, 76, 0.2);
    color: var(--text-light);
    margin-right: auto;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(201, 161, 76, 0.2);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid rgba(201, 161, 76, 0.3);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-light);
}

.chat-input button {
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .live-chat-widget {
        width: 300px;
        height: 400px;
        bottom: 10px;
        right: 10px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 161, 76, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(183, 28, 28, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 161, 76, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 2rem;
    color: var(--text-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 1.2rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(201, 161, 76, 0.5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-gold);
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 161, 76, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top-icon {
    font-size: 1.5rem;
    color: var(--primary-black);
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top-icon {
        font-size: 1.3rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-muted: #ffffff;
        --text-gold: #ffff00;
    }
}
