/* ============================================================
   ULTRA NOTIFIER - Main Stylesheet
   ============================================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --bg-card-hover: #22222f;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    --accent-primary: #00ff88;
    --accent-secondary: #00ccff;
    --accent-gradient: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    
    --bronze: #CD7F32;
    --silver: #C0C0C0;
    --gold: #FFD700;
    --diamond: #B9F2FF;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 204, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(0, 255, 136, 0.3), transparent);
    background-size: 200px 200px;
    animation: stars 100s linear infinite;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 50px 80px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 100px 150px, rgba(0, 255, 136, 0.2), transparent),
        radial-gradient(1px 1px at 180px 50px, rgba(0, 204, 255, 0.2), transparent);
    background-size: 250px 250px;
    animation: stars 150s linear infinite;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 30px 100px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 120px 30px, rgba(0, 255, 136, 0.15), transparent);
    background-size: 300px 300px;
    animation: stars 200s linear infinite;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-100%); }
}

/* ============================================================
   LIVE LOGS TICKER
   ============================================================ */

.live-logs-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.95) 100%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-primary);
    white-space: nowrap;
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.logs-ticker {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
}

/* Fade out mask on right side */
.logs-ticker::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 10;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.6s ease;
}

.log-item.new-log {
    animation: popInFromLeft 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes popInFromLeft {
    0% {
        transform: translateX(-150px) scale(0.5);
        opacity: 0;
    }
    60% {
        transform: translateX(15px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.log-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.log-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.log-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.log-value {
    font-size: 13px;
    color: var(--accent-primary);
    font-weight: 700;
}

.log-time {
    font-size: 11px;
    color: var(--text-muted);
}

/* No logs placeholder */
.no-logs {
    color: var(--text-muted);
    font-size: 14px;
    padding: 10px 20px;
    opacity: 0.7;
}

.log-item.new-log {
    animation: popIn 0.5s ease-out;
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--accent-primary);
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================================
   PLANS STATUS SECTION (Middle of page)
   ============================================================ */

.plans-status-section {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-status-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px 40px;
    box-shadow: var(--shadow);
}

.plans-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status-left .status-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-left .status-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.status-right {
    display: flex;
    gap: 40px;
}

.status-stat {
    text-align: right;
}

.status-stat .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.status-stat .stat-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
}

.plans-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.plan-status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 18px;
    position: relative;
    overflow: hidden;
}

.plan-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.plan-status-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-status-slots {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-secondary);
}

.plan-status-slots svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.plan-status-next {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.plan-status-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.plan-status-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.plan-status-card.bronze .plan-status-bar-fill { background: var(--bronze); }
.plan-status-card.silver .plan-status-bar-fill { background: var(--silver); }
.plan-status-card.gold .plan-status-bar-fill { background: var(--gold); }
.plan-status-card.diamond .plan-status-bar-fill { background: var(--diamond); }

.plan-status-card.bronze { border-color: rgba(205, 127, 50, 0.3); }
.plan-status-card.silver { border-color: rgba(192, 192, 192, 0.3); }
.plan-status-card.gold { border-color: rgba(255, 215, 0, 0.3); }
.plan-status-card.diamond { border-color: rgba(185, 242, 255, 0.3); }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    padding: 200px 50px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.brainrot-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.brainrot-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.card-info {
    text-align: center;
}

.card-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.card-value {
    display: block;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 16px;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 50px;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================================
   PLANS
   ============================================================ */

.plans {
    padding: 100px 50px;
    background: var(--bg-secondary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.plan-card.popular {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-display);
}

.plan-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-badge.bronze { background: rgba(205, 127, 50, 0.2); color: var(--bronze); }
.plan-badge.silver { background: rgba(192, 192, 192, 0.2); color: var(--silver); }
.plan-badge.gold { background: rgba(255, 215, 0, 0.2); color: var(--gold); }
.plan-badge.diamond { background: rgba(185, 242, 255, 0.2); color: var(--diamond); }

.plan-price {
    margin-bottom: 10px;
}

.plan-price .price {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
}

.plan-price .period {
    color: var(--text-muted);
    font-size: 16px;
}

.plan-value {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

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

.btn-plan {
    display: block;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-plan.bronze { background: var(--bronze); color: var(--bg-primary); }
.btn-plan.silver { background: var(--silver); color: var(--bg-primary); }
.btn-plan.gold { background: var(--gold); color: var(--bg-primary); }
.btn-plan.diamond { background: var(--diamond); color: var(--bg-primary); }

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    padding: 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-primary);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 50px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .plans-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .plans-status-section {
        padding: 50px 20px;
    }
    
    .plans-status-wrapper {
        padding: 20px;
    }
    
    .plans-status-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .plan-status-name {
        font-size: 12px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 180px 30px 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .navbar {
        padding: 0 20px;
    }
    
    .nav-links a:not(.btn-discord) {
        display: none;
    }
}

@media (max-width: 600px) {
    .plans-grid, .features-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

