/*
Theme Name: Rabona Casino Boni
Theme URI: https://rabonacasinoboni.com
Author: Elite WordPress Developers
Author URI: https://rabonacasinoboni.com
Description: Custom iGaming affiliate theme with fruity, high-energy design optimized for PPC conversions.
Version: 1.0.0
License: GPL v2 or later
Text Domain: rabonacasinoboni
*/

:root {
    --color-primary: #ff00ff;
    --color-secondary: #00ff9d;
    --color-accent: #8a2be2;
    --color-bg: #0a0a1a;
    --color-text: #ffffff;
    --color-card-bg: #1a1a2e;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
    --radius-3xl: 4rem;
    --font-heading: 'Arimo', 'Inter', system-ui, sans-serif;
    --font-body: 'Arimo', 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-secondary);
    text-decoration: none;
}

.primary-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.primary-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.primary-menu a:hover {
    color: var(--color-secondary);
}

.header-cta {
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-2xl);
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Permanent Hero Section */
.permanent-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2) 0%, rgba(10, 10, 26, 1) 70%),
                linear-gradient(135deg, #ff00ff20, #00ff9d20);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.hero-subheadline {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-3xl);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.8); }
}

/* Feature Cards */
.features-section {
    padding: 5rem 0;
}

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

.feature-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

/* Casino Offer Card */
.casino-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.casino-card:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.casino-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.casino-content {
    flex: 1;
}

.bonus-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.star-rating {
    color: gold;
    margin-bottom: 1rem;
}

.play-now-btn {
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-2xl);
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
}

.play-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

/* Footer */
.site-footer {
    background: #0a0a0f;
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 2px solid var(--color-primary);
}

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

.footer-column h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.compliance-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.compliance-logo {
    background: #222;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-menu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
    }

    .primary-menu.active ul {
        display: flex;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .casino-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 3rem;
    }
}