/* Level Up Casino Australia - Premium Dark Theme with Orange Accents */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1f1f1f;
    --orange-primary: #FFA500;
    --orange-light: #FFB733;
    --orange-dark: #FF8C00;
    --gold: #FFD700;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border: rgba(255, 165, 0, 0.2);
    --shadow: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-secondary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--orange-primary);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 3px;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--text-primary);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.6);
}

.cta-large {
    font-size: 20px;
    padding: 20px 50px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 165, 0, 0.8);
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta .cta-button {
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.5);
}

.cta-icon {
    font-size: 20px;
    margin-right: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--orange-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-amount {
    display: block;
    font-size: 72px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-icon {
    font-size: 24px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-urgency {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px 30px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    display: inline-flex;
    color: #ff4444;
    font-weight: 600;
}

.urgency-icon {
    font-size: 24px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.urgency-timer {
    color: var(--orange-primary);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bonus Breakdown Section */
.bonus-breakdown {
    background: var(--bg-secondary);
}

.bonus-table {
    max-width: 900px;
    margin: 0 auto 40px;
    border: 2px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
}

.bonus-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-bottom: 1px solid var(--border);
}

.bonus-row:last-child {
    border-bottom: none;
}

.bonus-header {
    background: rgba(255, 165, 0, 0.1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.bonus-cell {
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.bonus-cell:last-child {
    border-right: none;
}

.deposit-badge {
    background: var(--orange-primary);
    color: var(--bg-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.bonus-cta {
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.3);
}

.feature-icon-box {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card span {
    font-size: 24px;
    color: var(--orange-primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Games Grid */
.popular-games {
    background: var(--bg-secondary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon {
    font-size: 72px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--orange-primary);
    color: var(--text-primary);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.game-rtp {
    color: var(--orange-primary);
    font-weight: 600;
}

.games-cta {
    text-align: center;
}

/* Winners Ticker */
.winners-ticker {
    background: var(--bg-card);
    padding: 20px 0;
    overflow: hidden;
    border-top: 2px solid var(--orange-primary);
    border-bottom: 2px solid var(--orange-primary);
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 50px;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 16px;
}

.winner-icon {
    font-size: 24px;
}

.winner-amount {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 18px;
}

.winner-location {
    color: var(--text-muted);
    font-size: 14px;
}

/* Payment Methods */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.payment-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card.featured {
    border: 2px solid var(--orange-primary);
    background: rgba(255, 165, 0, 0.05);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.payment-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.payment-time {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.payment-badge {
    display: inline-block;
    background: var(--orange-primary);
    color: var(--bg-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.payment-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.info-icon {
    color: var(--orange-primary);
    font-weight: 700;
}

/* Pros & Cons */
.pros-cons {
    background: var(--bg-secondary);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pros-box, .cons-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.pros-box h3 {
    color: #4ade80;
    font-size: 24px;
    margin-bottom: 20px;
}

.cons-box h3 {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 20px;
}

.pros-list, .cons-list {
    list-style: none;
}

.pros-list li, .cons-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.cons-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border);
}

.testimonial-rating {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ */
.faq {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.2);
}

.faq-question {
    color: var(--orange-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.final-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange-primary);
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--orange-primary);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 20px;
}

.age-badge {
    display: inline-block;
    background: var(--orange-primary);
    color: var(--bg-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.responsible-gaming p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.responsible-gaming a {
    color: var(--orange-primary);
    text-decoration: none;
}

.footer-security {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.security-badge {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid var(--orange-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--orange-primary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
}

.disclaimer {
    margin-top: 10px;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-amount {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-features, .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .bonus-row {
        grid-template-columns: 1fr;
    }
    
    .bonus-cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
    }
    
    .cta-large {
        font-size: 16px;
        padding: 15px 30px;
    }
}

.review-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFA500;
    margin-top: 45px;
    margin-bottom: 14px;
    border-left: 4px solid #FFA500;
    padding-left: 14px;
}
.review-h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFD700;
    margin-top: 28px;
    margin-bottom: 10px;
}
.review-p {
    margin-bottom: 14px;
    color: #bbb;
    font-size: 0.97rem;
}
.review-list {
    margin: 12px 0 18px 24px;
    color: #bbb;
    font-size: 0.97rem;
}
.review-list li {
    margin-bottom: 8px;
    padding-left: 6px;
}
.review-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px 0;
    font-size: 0.9rem;
}
.review-table th {
    background: #1a1a1a;
    color: #FFD700;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #333;
    font-weight: 600;
}
.review-table td {
    padding: 9px 14px;
    border: 1px solid #2a2a2a;
    color: #bbb;
    background: #111;
}
.review-table tr:nth-child(even) td {
    background: #141414;
}
.review-pros-cons {
    display: flex;
    gap: 24px;
    margin: 20px 0 28px 0;
    flex-wrap: wrap;
}
.review-pros, .review-cons {
    flex: 1;
    min-width: 220px;
    border-radius: 10px;
    padding: 18px 20px;
}
.review-pros {
    background: rgba(0,200,100,0.08);
    border: 1px solid rgba(0,200,100,0.25);
}
.review-cons {
    background: rgba(255,80,80,0.08);
    border: 1px solid rgba(255,80,80,0.25);
}
.review-pros h4 {
    color: #00c864;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.review-cons h4 {
    color: #ff5050;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.review-pros ul, .review-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.review-pros ul li, .review-cons ul li {
    font-size: 0.92rem;
    margin-bottom: 7px;
    padding-left: 4px;
    color: #ccc;
}
.review-pros ul li::before { content: "✓ "; color: #00c864; }
.review-cons ul li::before { content: "✗ "; color: #ff5050; }
@media (max-width: 600px) {
    .review-h1 { font-size: 1.4rem; }
    .review-h2 { font-size: 1.15rem; }
    .review-pros-cons { flex-direction: column; }
    .review-table { font-size: 0.8rem; }
}

@keyframes fadeOut {
        from { opacity: 1; }
        to { opacity: 0; }
    }
    
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    /* опционально — визуальный намёк что можно скроллить */
    border-radius: 8px;
}

.table-container table {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
}