@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --bg-main: #030812;
    --bg-darker: #01040a;
    --bg-card: rgba(8, 16, 32, 0.7);
    --border-card: rgba(0, 240, 255, 0.15);
    
    /* Neon Colors from the Image */
    --neon-cyan: #00f0ff;
    --neon-cyan-glow: rgba(0, 240, 255, 0.4);
    --neon-orange: #ff5500;
    --neon-orange-glow: rgba(255, 85, 0, 0.4);
    --neon-green: #00ff66;
    --neon-green-glow: rgba(0, 255, 102, 0.4);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --font-sans: 'Inter', sans-serif;
    --font-gamer: 'Orbitron', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients & Accents */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Banner */
.banner-container {
    width: 100%;
    position: relative;
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.15);
    background-color: var(--bg-darker);
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
header {
    background-color: rgba(1, 4, 10, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-gamer);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

.logo span.rj {
    color: var(--neon-orange);
    text-shadow: 0 0 8px var(--neon-orange-glow);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--neon-cyan);
}

/* Glassmorphic Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 240, 255, 0.1);
}

/* Status Widget */
.status-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.status-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 4px solid var(--neon-cyan);
}

.status-card.live {
    border-left-color: var(--neon-green);
    box-shadow: 0 8px 32px 0 rgba(0, 255, 102, 0.05);
}

.status-card.live:hover {
    border-color: var(--neon-green);
    box-shadow: 0 12px 40px 0 rgba(0, 255, 102, 0.15);
}

.status-info {
    flex: 1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-gamer);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.status-badge.offline {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-badge.online {
    background-color: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
    animation: pulse 2s infinite;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-badge.offline .dot {
    background-color: var(--text-muted);
}

.status-badge.online .dot {
    background-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}

.stream-title {
    font-family: var(--font-gamer);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.stream-game {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.viewer-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
    border: none;
}

.btn-cyan {
    background-color: var(--neon-cyan);
    color: #01040a;
    box-shadow: 0 4px 15px var(--neon-cyan-glow);
}

.btn-cyan:hover {
    background-color: #33f3ff;
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--neon-orange);
    color: #fff;
    box-shadow: 0 4px 15px var(--neon-orange-glow);
}

.btn-orange:hover {
    background-color: #ff7733;
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Pricing / Sponsor Section */
.section-title {
    font-family: var(--font-gamer);
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--neon-cyan);
}

.pricing-card.silver::before {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-orange));
}

.pricing-card.gold::before {
    background: var(--neon-orange);
}

.pricing-card.gold {
    border-color: rgba(255, 85, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba(255, 85, 0, 0.05);
    transform: scale(1.03);
}

.pricing-card.gold:hover {
    border-color: rgba(255, 85, 0, 0.4);
    box-shadow: 0 12px 40px 0 rgba(255, 85, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--neon-orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(45deg);
    font-family: var(--font-gamer);
}

.package-name {
    font-family: var(--font-gamer);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pricing-card.cyan .package-name { color: var(--neon-cyan); }
.pricing-card.silver .package-name { color: #e5e7eb; }
.pricing-card.gold .package-name { color: var(--neon-orange); }

.price-box {
    margin-bottom: 25px;
}

.price-box .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-box .amount {
    font-family: var(--font-gamer);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-box .period {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.package-features li::before {
    content: '⚡';
    color: var(--neon-cyan);
}

.pricing-card.gold .package-features li::before {
    content: '🔥';
    color: var(--neon-orange);
}

.package-features li:last-child {
    border-bottom: none;
}

/* Footer Section */
footer.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-icon.twitch:hover {
    background-color: #6441a5;
    border-color: #6441a5;
    box-shadow: 0 0 15px rgba(100, 65, 165, 0.4);
}

.social-icon.discord:hover {
    background-color: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.social-icon.youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
}

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

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
    }
}

/* Admin Styles */
.admin-container {
    max-width: 800px;
    margin: 50px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(1, 4, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Toggle Switch */
.switch-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #374151;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.switch-label {
    font-family: var(--font-gamer);
    font-weight: 700;
    text-transform: uppercase;
}

/* Notifications Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.alert-danger {
    background-color: rgba(255, 85, 0, 0.1);
    color: var(--neon-orange);
    border: 1px solid var(--neon-orange);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.gold {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }
    
    .status-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        margin-top: -30px;
    }
    
    .status-info {
        text-align: center;
    }
    
    .status-badge {
        justify-content: center;
    }
    
    .viewer-count {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .banner-container {
        border-bottom-width: 1px;
    }
}
