:root {
    --toxic-yellow: #fffb00;
    --toxic-dark: #111111;
    --toxic-light: #e0e0e0;
    --neon-glow: 0 0 10px var(--toxic-yellow), 0 0 20px var(--toxic-yellow);
    --text-glow: 0 0 5px var(--toxic-yellow);
}

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

body {
    font-family: 'Rajdhani', 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 Yellow Accents */
.toxic-yellow {
    color: var(--toxic-yellow);
    text-shadow: var(--text-glow);
}

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

.toxic-btn {
    background: var(--toxic-yellow);
    color: var(--toxic-dark);
    font-weight: 700;
    border: none;
    box-shadow: var(--neon-glow);
}

.toxic-btn:hover {
    background: #e6e200;
}

.toxic-link {
    color: var(--toxic-yellow);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Glitch Text Effect */
.glitch-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 10vw;
    font-weight: 700;
    color: rgba(255, 251, 0, 0.03);
    z-index: -1;
    pointer-events: none;
    animation: glitch 5s infinite alternate;
}

@keyframes glitch {
    0% { opacity: 0.03; transform: translate(-50%, -50%) skew(0deg); }
    20% { opacity: 0.05; transform: translate(-51%, -50%) skew(5deg); }
    40% { opacity: 0.03; transform: translate(-50%, -51%) skew(-3deg); }
    60% { opacity: 0.05; transform: translate(-49%, -50%) skew(2deg); }
    100% { opacity: 0.03; transform: translate(-50%, -50%) skew(0deg); }
}

/* Flicker Animation */
.flicker {
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 22%, 24%, 55% { opacity: 0.5; }
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(17, 17, 17, 0.9);
}

.neon-border {
    border-bottom: 1px solid var(--toxic-yellow);
    box-shadow: 0 0 10px var(--toxic-yellow);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    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-yellow);
    color: var(--toxic-yellow);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--toxic-yellow);
    color: var(--toxic-dark);
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #111111, #1a1a1a);
}

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

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.neon-glow:hover {
    box-shadow: 0 0 20px var(--toxic-yellow), 0 0 40px var(--toxic-yellow);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    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 0 15px var(--toxic-yellow);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

.dark-bg {
    background: linear-gradient(135deg, #1a1a1a, #111111);
}

/* Diagonal Cut Effect */
.diagonal-cut::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom right, transparent 49%, #111111 50%);
    z-index: 1;
}

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

.hexagon-mask {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.5s ease;
}

.hexagon-mask:hover {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform: rotate(10deg);
}

.intro-text {
    flex: 1;
}

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

.toxic-note {
    padding: 15px;
    border-left: 3px solid var(--toxic-yellow);
    background: rgba(255, 251, 0, 0.05);
    margin-top: 20px;
}

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

.polaroid-effect {
    background: white;
    padding: 15px 15px 40px;
    transform: rotate(3deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.polaroid-effect p {
    text-align: center;
    margin-top: 10px;
    color: black;
    font-weight: 700;
}

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

.step {
    padding: 30px;
    border: 1px solid rgba(255, 251, 0, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--toxic-yellow);
    box-shadow: var(--neon-glow);
}

.step-icon {
    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;
}

.skew-box {
    transform: skew(-5deg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.skew-box:hover {
    transform: skew(0deg);
    box-shadow: var(--neon-glow);
}

.skew-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: skew(5deg) scale(1.1);
}

.skew-box p {
    padding: 15px;
    text-align: center;
    font-weight: 700;
}

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

.glitch-effect {
    position: relative;
}

.glitch-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, var(--toxic-yellow) 49%, var(--toxic-yellow) 51%, transparent 52%);
    background-size: 200% 200%;
    animation: glitch-bg 3s infinite linear;
    opacity: 0.3;
    z-index: 1;
}

@keyframes glitch-bg {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.toxic-checklist p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.toxic-checklist p::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--toxic-yellow);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 251, 0, 0.3);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .intro-content,
    .scam-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) {
    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding-top: 140px;
    }

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