/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050a15;
    --bg-secondary: #080d18;
    --bg-card: #0c1424;
    --text-primary: #ffffff;
    --text-secondary: #a8b5c8;
    --text-muted: #5a6a80;
    --accent: #00d4ff;
    --accent-hover: #00b8e6;
    --accent-glow: rgba(0, 212, 255, 0.2);
    --accent-glow-strong: rgba(0, 212, 255, 0.4);
    --border: #152238;
    --border-glow: rgba(0, 212, 255, 0.3);
    --warning: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 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;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 10, 21, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0.5;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--bg-primary);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.btn-contact {
    background: var(--accent);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-contact:hover {
    background: var(--accent-hover);
    color: var(--bg-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    gap: 16px;
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.5;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(5, 10, 21, 0.6) 0%, 
        rgba(5, 10, 21, 0.4) 50%, 
        rgba(5, 10, 21, 0.85) 100%
    );
}

/* Global Floating Particles */
.global-particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent-glow);
    animation: float-particle 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 5%; top: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 15%; top: 35%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(3) { left: 25%; top: 55%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(4) { left: 35%; top: 75%; animation-delay: 0.5s; animation-duration: 16s; }
.particle:nth-child(5) { left: 45%; top: 20%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 55%; top: 45%; animation-delay: 1.5s; animation-duration: 11s; }
.particle:nth-child(7) { left: 65%; top: 65%; animation-delay: 2.5s; animation-duration: 15s; }
.particle:nth-child(8) { left: 75%; top: 85%; animation-delay: 4s; animation-duration: 17s; }
.particle:nth-child(9) { left: 85%; top: 15%; animation-delay: 0.8s; animation-duration: 12s; }
.particle:nth-child(10) { left: 95%; top: 40%; animation-delay: 3.5s; animation-duration: 14s; }
.particle:nth-child(11) { left: 8%; top: 60%; animation-delay: 1.2s; animation-duration: 13s; }
.particle:nth-child(12) { left: 22%; top: 80%; animation-delay: 2.8s; animation-duration: 15s; }
.particle:nth-child(13) { left: 38%; top: 5%; animation-delay: 0.3s; animation-duration: 11s; }
.particle:nth-child(14) { left: 52%; top: 70%; animation-delay: 4.2s; animation-duration: 16s; }
.particle:nth-child(15) { left: 68%; top: 30%; animation-delay: 1.8s; animation-duration: 12s; }
.particle:nth-child(16) { left: 78%; top: 50%; animation-delay: 3.2s; animation-duration: 14s; }
.particle:nth-child(17) { left: 88%; top: 75%; animation-delay: 0.6s; animation-duration: 13s; }
.particle:nth-child(18) { left: 12%; top: 25%; animation-delay: 2.2s; animation-duration: 15s; }
.particle:nth-child(19) { left: 42%; top: 90%; animation-delay: 1.4s; animation-duration: 11s; }
.particle:nth-child(20) { left: 92%; top: 60%; animation-delay: 3.8s; animation-duration: 14s; }

.particle-orange {
    background: #ff6b35;
    box-shadow: 0 0 10px #ff6b35, 0 0 20px rgba(255, 107, 53, 0.4);
}

.particle-yellow {
    background: #fbbf24;
    box-shadow: 0 0 10px #fbbf24, 0 0 20px rgba(251, 191, 36, 0.4);
}

/* Section-specific particles */
.section-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.section-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 10s; }
.section-particles .particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 12s; }
.section-particles .particle:nth-child(3) { left: 40%; top: 35%; animation-delay: 2s; animation-duration: 9s; }
.section-particles .particle:nth-child(4) { left: 60%; top: 70%; animation-delay: 0.5s; animation-duration: 11s; }
.section-particles .particle:nth-child(5) { left: 75%; top: 25%; animation-delay: 3s; animation-duration: 10s; }
.section-particles .particle:nth-child(6) { left: 85%; top: 55%; animation-delay: 1s; animation-duration: 13s; }
.section-particles .particle:nth-child(7) { left: 20%; top: 80%; animation-delay: 2.5s; animation-duration: 11s; }
.section-particles .particle:nth-child(8) { left: 50%; top: 15%; animation-delay: 4s; animation-duration: 12s; }

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 1;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 0 25px var(--accent-glow);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--accent);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #0099cc 100%);
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-glow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00e5ff 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow-strong);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    width: 100%;
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Video Section */
.video-section {
    padding: 80px 0 120px;
    background: var(--bg-primary);
}

.video-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 60px var(--accent-glow);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
}

.video-feature-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
}

/* Planes Section */
.planes {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.plan-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(12, 20, 36, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.1s ease-out, box-shadow 0.3s, border-color 0.3s;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.plan-card:hover {
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--accent-glow);
}

.plan-card .plan-card-shine {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(0, 212, 255, 0.15),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.plan-card:hover .plan-card-shine {
    opacity: 1;
}

.plan-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px var(--accent-glow), 0 0 120px var(--accent-glow);
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-glow);
    border-radius: 14px;
    margin-bottom: 16px;
    color: var(--accent);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.plan-price {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.price-divider {
    margin: 0 12px;
    color: var(--text-muted);
}

.price-soles {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.plan-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--warning);
}

.plan-warning svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Vouchers Section */
.vouchers {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #000 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vouchers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

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

.voucher-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.voucher-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.voucher-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.voucher-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--bg-primary);
}

.voucher-info {
    flex: 1;
}

.voucher-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.voucher-plan {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

.voucher-rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.voucher-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.voucher-stats {
    display: flex;
    gap: 16px;
}

.voucher-stat {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.voucher-stat strong {
    color: var(--accent);
    font-weight: 600;
}

/* Voucher Image Cards */
.voucher-image-card {
    padding: 0;
    overflow: hidden;
}

.voucher-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.voucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.voucher-image-card:hover .voucher-image img {
    transform: scale(1.05);
}

.voucher-image-info {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
}

.voucher-fps {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.voucher-game {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Discord Chat Style */
.discord-chat {
    background: linear-gradient(145deg, #313338 0%, #2b2d31 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 100px var(--accent-glow);
    position: relative;
}

.discord-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.discord-header {
    background: linear-gradient(180deg, #1e1f22 0%, #232428 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.discord-hash {
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
}

.discord-messages {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 800px;
    overflow-y: auto;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 100%);
}

.discord-message {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.discord-message:hover {
    background: rgba(255, 255, 255, 0.03);
}

.discord-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--accent);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.discord-message:hover::before {
    height: 60%;
}

.discord-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.discord-message:hover .discord-avatar {
    border-color: var(--accent);
}

.discord-content {
    flex: 1;
    min-width: 0;
}

.discord-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.discord-username {
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
}

.discord-bot {
    background: #5865f2;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
}

.discord-timestamp {
    color: #6d6f78;
    font-size: 12px;
}

.discord-text {
    color: #dbdee1;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.discord-mention {
    color: #c9cdfb;
    background: rgba(88, 101, 242, 0.3);
    padding: 0 2px;
    border-radius: 3px;
}

.discord-image-container {
    margin: 12px 0;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.discord-image-container:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
    transform: scale(1.02);
}

.discord-attached-image {
    width: 100%;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.discord-attached-image:hover {
    opacity: 0.95;
}

.discord-image-wide {
    max-width: 550px;
}

.discord-embed {
    display: flex;
    margin-top: 8px;
    max-width: 520px;
}

.discord-embed-bar {
    width: 4px;
    background: var(--accent);
    border-radius: 4px;
    flex-shrink: 0;
}

.discord-embed-content {
    background: #2f3136;
    padding: 12px 16px;
    border-radius: 0 4px 4px 0;
    flex: 1;
}

.discord-embed-title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.discord-embed-desc {
    color: #b5bac1;
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
}

/* Discord User Styles */
.discord-avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: #fff;
}

.discord-avatar-dark {
    background: linear-gradient(135deg, #36393f, #4f545c);
}

.discord-user-green {
    color: #57f287 !important;
}

.discord-user-red {
    color: #ed4245 !important;
}

.discord-user-yellow {
    color: #fee75c !important;
}

.discord-role-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 4px;
}

.discord-role-aura {
    background: rgba(87, 242, 135, 0.2);
    color: #57f287;
}

.discord-role-drop {
    background: rgba(237, 66, 69, 0.2);
    color: #ed4245;
}

.discord-emoji-crown {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.discord-specs {
    color: #949ba4;
    font-size: 14px;
    margin-top: -4px;
}

.discord-reactions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.discord-reaction {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: #dbdee1;
    transition: all 0.2s ease;
}

.discord-reaction:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: scale(1.05);
}

.reaction-check {
    color: #57f287;
    font-weight: 700;
}

@media (max-width: 768px) {
    .discord-image-container {
        max-width: 100%;
    }
    
    .discord-image-wide {
        max-width: 100%;
    }
    
    .discord-message {
        gap: 12px;
    }
    
    .discord-avatar {
        width: 36px;
        height: 36px;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.cta-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, var(--bg-card) 50%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 0 60px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

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

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(1.1);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        gap: 32px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cta-card {
        padding: 32px 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }

.plan-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

/* Profile Card Styles */
.contact-profile-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(12, 20, 36, 0.9) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.contact-profile-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

.profile-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.profile-avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    object-fit: cover;
}

.profile-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border: 3px solid var(--bg-card);
    border-radius: 50%;
}

.profile-info {
    margin-bottom: 24px;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-tag {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.profile-bio {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.profile-stat {
    text-align: center;
}

.profile-stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.profile-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-badge-item {
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}

/* CTA Card Enhancements */
.cta-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.cta-feature svg {
    color: var(--accent);
}

/* Vouchers Section Enhancements */
.vouchers {
    position: relative;
    overflow: hidden;
}

.vouchers-bg-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400px;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.vouchers-stats-banner {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 48px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.1) 0%, var(--bg-card) 50%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px var(--accent-glow), inset 0 0 60px rgba(0, 212, 255, 0.05);
}

.vouchers-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.voucher-stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voucher-stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.voucher-stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.voucher-stat-item:hover .voucher-stat-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow);
}

.voucher-stat-content {
    text-align: left;
}

.voucher-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.voucher-stat-text {
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}



@media (max-width: 768px) {
    .vouchers-stats-banner {
        gap: 24px;
        padding: 24px;
    }
    
    .voucher-stat-item {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .profile-stats {
        gap: 16px;
    }
    
    .profile-badges {
        gap: 6px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
