:root {
    /* Background Colors */
    --bg-primary: #FFF8F0;
    --bg-secondary: #FFF0E5;
    --bg-card: #FFFFFF;
    --bg-dark: #2D1B0E;

    /* Theme Colors - Sunset Gradient */
    --color-orange: #FF6B35;
    --color-coral: #FF8C61;
    --color-pink: #FF69B4;
    --color-purple: #9B59B6;
    --color-gold: #FFD93D;
    --color-green: #4CAF50;

    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #FF8C61 25%, #FF69B4 50%, #9B59B6 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35, #FF8C61);
    --gradient-sky: linear-gradient(180deg, #FFE5D9 0%, #FFF0E5 50%, #E8D5FF 100%);

    /* Text Colors */
    --text-primary: #2D1B0E;
    --text-secondary: #5D4037;
    --text-muted: #8D6E63;

    /* Border */
    --border-color: #FFD5C2;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
}

h1, h2, h3, .brand-name, .section-title {
    font-family: 'Quicksand', sans-serif;
}

/* Header */
.header {
    background: var(--gradient-sunset);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-card);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb-item a:hover {
    color: var(--color-orange);
}
.breadcrumb-item.active {
    color: var(--text-muted);
}
.breadcrumb-item:not(:last-child)::after {
    content: "›";
    color: var(--text-muted);
    margin-left: 8px;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
}
.logo-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon i { color: var(--color-orange); font-size: 22px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-full);
}
.main-nav a:hover {
    color: white;
    background: rgba(255,255,255,0.2);
}

/* Mobile Menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
.hamburger span { width: 25px; height: 3px; background: white; border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--gradient-sunset); z-index: 1001; flex-direction: column; justify-content: center; align-items: center; gap: 30px; }
.mobile-nav.active { display: flex; }
.mobile-nav a { color: white; text-decoration: none; font-size: 24px; font-weight: 700; }
.mobile-nav .close-btn { position: absolute; top: 20px; right: 20px; font-size: 30px; color: white; cursor: pointer; }

/* Hero Section */
.hero {
    background: var(--gradient-sunset);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}
.btn {
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-white {
    background: white;
    color: var(--color-orange);
    box-shadow: var(--shadow-lg);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.4);
}
.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
}
.btn-outline:hover {
    background: var(--color-orange);
    color: white;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-card);
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.stat-item {
    text-align: center;
    padding: 10px 30px;
}
.stat-value {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 5px;
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}
.section-title span {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ranking Section */
.ranking-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.brand-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid transparent;
    border-image: var(--gradient-sunset) 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.brand-rank {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-orange);
    min-width: 50px;
}
.brand-logo {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.brand-logo span { font-size: 24px; font-weight: 800; color: var(--color-orange); }
.brand-info { flex: 1; min-width: 200px; }
.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}
.brand-desc {
    color: var(--text-muted);
    font-size: 14px;
}
.brand-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rating-stars { color: var(--color-gold); font-size: 16px; }
.rating-value {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}
.brand-bonus {
    background: var(--gradient-warm);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}
.brand-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.brand-card .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-sunset);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}
.brand-card.featured {
    position: relative;
    border: 2px solid var(--color-orange);
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--bg-primary);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.category-icon i { color: white; font-size: 32px; }
.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.category-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-question i { color: var(--color-orange); transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}
.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    color: white;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-title {
    color: var(--color-orange);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--color-orange);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}
.footer-disclaimer p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin: 0;
}
.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.responsible-gaming span {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 40px; }
    .stats-bar { margin: -50px 20px 0; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .stats-bar { margin: -40px 15px 0; }
    .stat-value { font-size: 28px; }
    .section-title { font-size: 28px; }
    .brand-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .brand-info { min-width: auto; }
    .brand-actions { justify-content: center; }
}
