:root {
    --bg-dark: #07090e;
    --bg-surface: #0e121a;
    --bg-card: rgba(18, 24, 38, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.35);
    --accent: #ec4899;
    --accent-glow: rgba(236, 72, 153, 0.35);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

/* Šviesų fonai */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}
.orb-top-left {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: var(--primary-glow);
}
.orb-bottom-right {
    top: 600px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--accent-glow);
}

/* Navigacija */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo-bold { font-weight: 700; color: #fff; }
.logo-light { font-weight: 500; color: var(--primary); }
.logo-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    background: var(--primary);
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 700;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.btn-discord {
    background: #5865F2;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

/* Hero Skiltis */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
    z-index: 1;
}
.hero-wrapper {
    max-width: 850px;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    font-size: 0.85rem;
    color: #a5b4fc;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}
.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    box-shadow: 0 0 25px var(--primary-glow);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--accent-glow);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Gyvos statistikos kortelė */
.stats-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}
.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-color);
}

/* Skiltys */
.section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 700;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-top: 5px;
}
.section-desc {
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Savybių Tinklelis */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}
.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Parduotuvė */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
}
.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, rgba(18, 24, 38, 0.9) 100%);
    transform: scale(1.04);
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.tier-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 15px 0 25px;
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
}
.tier-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}
.tier-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tier-features li i.fa-check { color: #22c55e; }
.tier-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.btn-store {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 100%;
    justify-content: center;
}
.btn-store:hover { background: rgba(255, 255, 255, 0.1); }
.btn-full { width: 100%; justify-content: center; }

/* Taisyklių Accordion */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.accordion-header {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.accordion-header:hover {
    color: var(--primary);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background: #040508;
    padding: 60px 24px 30px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 0.9rem;
}
.footer-links h4, .footer-discord h4 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}
.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.footer-links a:hover { color: #fff; }
.footer-discord p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.btn-discord-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #818cf8;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-title { font-size: 2.8rem; }
    .stats-bar { flex-direction: column; gap: 20px; padding: 25px; }
    .stat-divider { display: none; }
    .pricing-card.featured { transform: none; }
    .footer-container { grid-template-columns: 1fr; }
}
