:root {
    --toxic-green: #00ff88;
    --toxic-dark: #0a0a0a;
    --toxic-light: #f0f0f0;
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 4px 30px rgba(0, 255, 136, 0.1);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--toxic-dark);
    color: var(--toxic-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Toxic Green Accents */
.toxic-green {
    color: var(--toxic-green);
}

.toxic-bg {
    background: var(--toxic-green);
    color: var(--toxic-dark);
}

.toxic-btn {
    background: var(--toxic-green);
    color: var(--toxic-dark);
    border: none;
}

.toxic-btn:hover {
    background: #00cc6a;
}

.toxic-link {
    color: var(--toxic-green);
    text-decoration: none;
    border-bottom: 1px dashed var(--toxic-green);
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* SCAMMERS Animation */
.scam-text-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 8vw;
    font-weight: 700;
    color: rgba(0, 255, 136, 0.05);
    z-index: -1;
    pointer-events: none;
}

.scam-text-animation span {
    display: inline-block;
    animation: scam-pulse 2s infinite alternate;
}

@keyframes scam-pulse {
    0% { opacity: 0.05; transform: translateY(0); }
    100% { opacity: 0.15; transform: translateY(-10px); }
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--toxic-green);
    color: var(--toxic-green);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--toxic-green);
    color: var(--toxic-dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Sections */
section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.dark-bg {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 0.7));
}

/* Intro Section */
.intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

/* Ticketmeta Section */
.ticketmeta-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ticketmeta-text {
    flex: 1;
}

.ticketmeta-text p {
    margin-bottom: 20px;
}

.ticketmeta-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

/* Scheme Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.timeline-item {
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Evidence Grid */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.evidence-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.evidence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
}

.evidence-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.evidence-item p {
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

/* Warning Section */
.warning-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.warning-text {
    flex: 1;
}

.warning-text p {
    margin-bottom: 20px;
}

.warning-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    text-align: center;
}

.footer p {
    margin-bottom: 20px;
}

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

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .intro-content,
    .ticketmeta-content,
    .warning-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .scam-text-animation {
        font-size: 15vw;
    }

    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding-top: 140px;
    }

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

    .scam-links {
        flex-direction: column;
        gap: 10px;
    }
}