:root {
    --bg-primary: #060806;
    --bg-secondary: #0a0d0a;
    --bg-card: #0f130f;
    --accent: #00d26a;
    --accent-glow: rgba(0, 210, 106, 0.4);
    --accent-dim: rgba(0, 210, 106, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #8a908a;
    --border: rgba(255, 255, 255, 0.06);
    --glass: rgba(15, 19, 15, 0.7);
    --font: 'Vazirmatn', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.btn-primary, .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #00a854 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 210, 106, 0.5);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 20px var(--accent-dim);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(6, 8, 6, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 8, 6, 0.95);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent) 0%, #00a854 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 210, 106, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.accent {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 210, 106, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 168, 84, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 100, 50, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #060806 0%, #0a0d0a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 210, 106, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 106, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center bottom;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

.hero .container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: -100px;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.hero .container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.2);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff 0%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #00ff85 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 20px var(--accent-dim);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.5),
        0 0 0 1px rgba(0, 210, 106, 0.1);
    color: var(--accent);
    font-weight: 700;
    backdrop-filter: blur(20px);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header.left {
    text-align: right;
}

.section-tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.3;
}

.section-tag::before { right: calc(100% + 15px); }
.section-tag::after { left: calc(100% + 15px); }

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    padding: 10rem 0;
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 210, 106, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s;
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 210, 106, 0.3);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.4),
        0 0 30px rgba(0, 210, 106, 0.1);
}

.bento-card:hover::after {
    left: 100%;
}

.bento-card.large {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card.wide {
    grid-column: span 2;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.1) 0%, rgba(0, 210, 106, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    border: 1px solid rgba(0, 210, 106, 0.2);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.1);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: #fff;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.jobs {
    padding: 10rem 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.jobs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-opacity='0.02' fill='%2300d26a'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.job-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.job-card:hover::before {
    opacity: 1;
}

.job-card.police { color: #3b82f6; border-top: 3px solid transparent; }
.job-card.medic { color: #ef4444; border-top: 3px solid transparent; }
.job-card.criminal { color: #f59e0b; border-top: 3px solid transparent; }
.job-card.mechanic { color: #8b5cf6; border-top: 3px solid transparent; }

.job-card.police:hover { border-color: #3b82f6; box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); }
.job-card.medic:hover { border-color: #ef4444; box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2); }
.job-card.criminal:hover { border-color: #f59e0b; box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2); }
.job-card.mechanic:hover { border-color: #8b5cf6; box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2); }

.job-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
}

.job-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.job-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.job-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.job-card:hover .job-icon img {
    transform: scale(1.1);
}

.job-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: #fff;
}

.job-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.job-features {
    list-style: none;
    text-align: right;
    margin-bottom: 1.5rem;
}

.job-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.job-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.btn-job {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-job:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.roadmap {
    padding: 10rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.job-card.police .btn-job:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.job-card.medic .btn-job:hover {
    background: #ef4444;
    border-color: #ef4444;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
}

.job-card.criminal .btn-job:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

.job-card.mechanic .btn-job:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--accent) 10%, 
        var(--accent) 90%, 
        transparent 100%
    );
    opacity: 0.3;
    box-shadow: 0 0 20px var(--accent);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    opacity: 0.6;
    transition: all 0.3s;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-item:hover {
    opacity: 1;
    transform: translateX(10px);
}

.timeline-item.completed { opacity: 1; }
.timeline-item.active { 
    opacity: 1; 
    transform: scale(1.02);
}

.timeline-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--border);
    flex-shrink: 0;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.timeline-item.completed .timeline-marker {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-item.active .timeline-marker {
    background: var(--bg-secondary);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.2);
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(0, 210, 106, 0.1); }
}

.timeline-content {
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    flex: 1;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: rgba(0, 210, 106, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.timeline-date {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 1px;
}

.timeline-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.rules {
    padding: 10rem 0;
    position: relative;
    background: var(--bg-primary);
}

.rules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(0, 210, 106, 0.02) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(0, 210, 106, 0.02) 50%, transparent 50.5%);
    background-size: 100px 100px;
    pointer-events: none;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rule-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s;
}

.rule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 106, 0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.rule-card:hover::before {
    transform: scaleY(1);
}

.rule-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15) 0%, rgba(0, 210, 106, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 210, 106, 0.2);
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.1);
}

.rule-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.rule-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
}

.store {
    padding: 10rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.store::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 210, 106, 0.05) 0%, transparent 50%);
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.link-arrow {
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.link-arrow:hover {
    gap: 1rem;
    color: #00ff7f;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 210, 106, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.product-card.featured {
    border-color: var(--accent);
    box-shadow: 
        0 0 40px rgba(0, 210, 106, 0.15),
        inset 0 0 40px rgba(0, 210, 106, 0.05);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,8,6,0.8) 0%, transparent 50%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.product-tag.hot {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.4);
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: #fff;
}

.product-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.price {
    font-weight: 900;
    color: var(--accent);
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 210, 106, 0.3);
}

.btn-add {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent);
    border: none;
    color: #000;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
}

.btn-add:hover {
    background: #00ff7f;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 30px rgba(0, 210, 106, 0.5);
}

.faq {
    padding: 10rem 0;
    background: var(--bg-primary);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 210, 106, 0.03) 0%, transparent 50%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 210, 106, 0.1);
}

.faq-item.active {
    border-color: rgba(0, 210, 106, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 210, 106, 0.03);
    color: var(--accent);
}

.faq-question .icon {
    transition: transform 0.4s;
    color: var(--accent);
    font-size: 1.25rem;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 2;
    font-size: 1rem;
}

.cta {
    padding: 6rem 0 10rem;
    position: relative;
}

.cta-box {
    background: 
        linear-gradient(135deg, rgba(0, 30, 15, 0.9) 0%, rgba(0, 20, 10, 0.9) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 210, 106, 0.03) 2px,
            rgba(0, 210, 106, 0.03) 4px
        );
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.5),
        inset 0 0 80px rgba(0, 210, 106, 0.05),
        0 0 40px rgba(0, 210, 106, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    opacity: 0.5;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
    min-width: 320px;
}

.ip-box {
    background: rgba(0,0,0,0.4);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(0, 210, 106, 0.2);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.ip-box code {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 210, 106, 0.3);
}

.btn-icon {
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.2);
    color: var(--accent);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.4);
}

.footer {
    background: #040504;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    max-width: 320px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border);
    font-size: 1.25rem;
}

.socials a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5865F2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--glass);
    border: 1px solid var(--accent);
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.5),
        0 0 30px rgba(0, 210, 106, 0.2);
    backdrop-filter: blur(20px);
    font-weight: 600;
}

.toast.show {
    transform: translateX(0);
}

.toast svg {
    color: var(--accent);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent) 0%, #00a854 100%);
    border-radius: 4px;
    border: 2px solid var(--bg-secondary);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00ff7f 0%, var(--accent) 100%);
    box-shadow: 
        inset 0 0 4px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 210, 106, 0.6);
    cursor: pointer;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 106, 0.6);
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-desc {
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .floating-badge {
        left: 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.wide, .bento-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-actions {
        width: 100%;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .jobs-grid,
    .rules-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .divider {
        display: none;
    }
    
    .cta-box {
        padding: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

.store-preview {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.store-cta-box {
    background: linear-gradient(135deg, rgba(0, 30, 15, 0.5) 0%, rgba(0, 20, 10, 0.3) 100%);
    border: 1px solid rgba(0, 210, 106, 0.2);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    backdrop-filter: blur(20px);
}

.store-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .store-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
}

/* Compact Ticket Box */
.ticket-box {
    max-width: 400px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.ticket-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.ticket-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15) 0%, rgba(0, 168, 84, 0.05) 100%);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 210, 106, 0.15);
}

.ticket-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.ticket-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #00a854 100%);
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.3);
    border: none;
    cursor: pointer;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 210, 106, 0.5);
    filter: brightness(1.1);
}

.btn-ticket svg {
    transition: transform 0.3s;
}

.btn-ticket:hover svg {
    transform: rotate(90deg);
}

@media (max-width: 640px) {
    .ticket-box {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
}
