/* CSS Variables */
:root {
    --primary-gold: #ffd700;
    --secondary-gold: #ffed4e;
    --accent-red: #ff4444;
    --success: #22c55e;
    --background-dark: #0a0a0a;
    --background-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-light: #e5e5e5;
    --text-muted: #999999;
    --border-color: #333333;
    --border-radius: 12px;
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-jackpot {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo-mate {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 1px;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.btn-login {
    background: var(--background-card);
    color: var(--text-light);
    border-color: var(--border-color);
}

.btn-login:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-register {
    background: var(--accent-red);
    color: white;
}

.btn-register:hover {
    background: #ff3333;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
}

/* Hero Section */
.bonus-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, #1a0a1a 50%, var(--background-dark) 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.bonus-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="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.bonus-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red), #ff6666);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-wheel {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #ff6b6b 0deg 90deg,
        #4ecdc4 90deg 180deg,
        #45b7d1 180deg 270deg,
        #96ceb4 270deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slowRotate 20s linear infinite;
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.6),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--primary-gold);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bonus-wheel:hover {
    transform: scale(1.05);
    animation-play-state: paused;
    box-shadow: 
        0 0 80px rgba(255, 215, 0, 0.8),
        inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.bonus-wheel::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid var(--primary-gold);
    z-index: 10;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel-center {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--background-dark), #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 4px solid var(--primary-gold);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
}

.wheel-text {
    color: var(--primary-gold);
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    letter-spacing: 2px;
}

.wheel-segments {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.segment {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.segment:nth-child(1) { 
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
}
.segment:nth-child(2) { 
    top: 0;
    right: 0;
    border-radius: 0 100% 0 0;
}
.segment:nth-child(3) { 
    bottom: 0;
    right: 0;
    border-radius: 0 0 100% 0;
}
.segment:nth-child(4) { 
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 100%;
}

/* Live Bonus Counter */
.live-bonus-counter {
    background: var(--background-card);
    padding: 2rem 0;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.counter-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-item {
    padding: 1.5rem;
    background: var(--background-dark);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.counter-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

/* Main Bonuses Section */
.main-bonuses {
    padding: 6rem 0;
    background: var(--background-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.bonus-card.featured {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.bonus-card.vip {
    border-color: var(--secondary-gold);
    background: linear-gradient(135deg, var(--background-card) 0%, #2a1a0a 100%);
}

.bonus-card.high-roller {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, var(--background-card) 0%, #2a0a0a 100%);
}

.bonus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.bonus-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 700;
}

.bonus-features {
    margin-bottom: 2rem;
}

.feature {
    color: var(--success);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-bonus {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--background-dark);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Bonus Terms Section */
.bonus-terms {
    padding: 6rem 0;
    background: var(--background-card);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.term-card {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.term-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.term-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.term-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.term-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.bonus-faq {
    padding: 6rem 0;
    background: var(--background-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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 {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Bonus History Section */
.bonus-history {
    padding: 6rem 0;
    background: var(--background-card);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.history-card {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.history-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.history-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.history-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.history-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.history-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Bonus Tips Section */
.bonus-tips {
    padding: 6rem 0;
    background: var(--background-dark);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.tip-number {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--background-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip-content h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Bonus Calendar Section */
.bonus-calendar {
    padding: 6rem 0;
    background: var(--background-card);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.day-card {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.day-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.day-bonus {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.day-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.day-time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Bonus Winners Section */
.bonus-winners {
    padding: 6rem 0;
    background: var(--background-dark);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.winner-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.winner-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);
    animation: winnerShimmer 3s infinite;
}

@keyframes winnerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.winner-avatar {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.winner-info {
    margin-bottom: 1rem;
}

.winner-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
}

.winner-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.winner-bonus {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winner-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--success);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.winner-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.bonus-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-card) 0%, var(--background-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 3rem 0;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-copy {
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .bonus-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .counter-content {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-card.featured {
        transform: none;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .bonus-wheel {
        width: 250px;
        height: 250px;
    }
    
    .wheel-center {
        width: 100px;
        height: 100px;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}