/* Global Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3333;
    --secondary-color: #ffcc00;
    --bg-dark: #0a0a0a;
    --bg-gray: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --prison-bar: #2a2a2a;
    --neon-red: #ff0000;
    --neon-blue: #0066ff;
    --warning-yellow: #ffff00;
}

/* Base Styles */
body {
    font-family: 'Courier New', monospace;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Police Tape */
.police-tape-top,
.police-tape-bottom {
    position: fixed;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(
        45deg,
        var(--warning-yellow),
        var(--warning-yellow) 100px,
        #000 100px,
        #000 200px
    );
    z-index: 9999;
    pointer-events: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.police-tape-top {
    top: 0;
    animation: slideRight 20s linear infinite;
}

.police-tape-top::before {
    content: 'CAUTION: DEGEN ZONE - DO NOT CROSS ';
    color: #000;
    font-size: 14px;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

.police-tape-bottom {
    bottom: 0;
    animation: slideLeft 20s linear infinite;
}

.police-tape-bottom::before {
    content: 'WARNING: EXTREME GAINS AHEAD - PROCEED AT YOUR OWN RISK ';
    color: #000;
    font-size: 14px;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

/* Glitch Overlay */
.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.1) 0px,
        transparent 2px,
        transparent 4px
    );
    animation: glitchScan 8s linear infinite;
}

/* Siren Lights */
.siren-light {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    top: 100px;
}

.siren-light.left {
    left: -100px;
    background: var(--neon-red);
    animation: sirenLeft 2s ease-in-out infinite;
}

.siren-light.right {
    right: -100px;
    background: var(--neon-blue);
    animation: sirenRight 2s ease-in-out infinite;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.prison-bars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        var(--prison-bar) 80px,
        var(--prison-bar) 90px
    );
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.mugshot-frame {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px;
    background: var(--bg-gray);
    border: 3px solid var(--text-gray);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
    animation: float 3s ease-in-out infinite;
}

.mugshot {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.2);
}

.mugshot-number {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: var(--warning-yellow);
    padding: 5px 20px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid var(--warning-yellow);
}

.hero h1 {
    font-size: clamp(60px, 15vw, 150px);
    font-weight: 900;
    letter-spacing: 10px;
    margin: 30px 0;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red),
        0 0 80px var(--neon-red);
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-blue);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-red);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.tagline {
    font-size: clamp(16px, 3vw, 28px);
    letter-spacing: 4px;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: bold;
}

.status-banner {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    border: 3px solid #000;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
}

.blink {
    animation: blink 1s infinite;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid var(--warning-yellow);
    padding: 20px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.alert-icon {
    background: var(--primary-color);
    color: #000;
    padding: 15px 25px;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.8);
}

.alert-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.alert-text span {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    letter-spacing: 2px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-dark) 100%);
    border: 2px solid var(--text-gray);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
    margin: 20px 0;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 2px;
    font-weight: bold;
}

/* Section Title */
.section-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    text-align: center;
    margin: 80px 0 40px;
    letter-spacing: 8px;
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--neon-red);
}

/* About Section */
.about-section {
    max-width: 900px;
    margin: 80px auto;
}

.rap-sheet {
    background: var(--bg-gray);
    border: 3px solid var(--text-gray);
    padding: 30px;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.charge-line {
    font-size: 16px;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid var(--primary-color);
    background: rgba(255, 51, 51, 0.1);
    letter-spacing: 1px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0;
    color: var(--text-gray);
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    margin: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--text-gray);
    background: var(--bg-gray);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
}

.evidence-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: contrast(1.1);
}

.evidence-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warning-yellow);
    color: #000;
    padding: 10px 20px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 2px;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Contract Section */
.contract-section {
    margin: 80px 0;
    text-align: center;
}

.contract-box {
    max-width: 800px;
    margin: 40px auto;
    background: var(--bg-gray);
    border: 3px solid var(--text-gray);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contract-label {
    font-size: 14px;
    color: var(--secondary-color);
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contract-address {
    background: #000;
    color: var(--warning-yellow);
    padding: 20px;
    font-size: clamp(12px, 2vw, 20px);
    word-break: break-all;
    border: 2px solid var(--warning-yellow);
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.copy-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.copy-btn:hover {
    background: var(--warning-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.5);
}

.copy-btn:active {
    transform: translateY(0);
}

/* How to Buy */
.how-to-buy {
    margin: 80px 0;
}

.steps-container {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--bg-gray);
    padding: 30px;
    border: 2px solid var(--text-gray);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--text-white);
}

.step-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin: 80px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 3px;
    text-decoration: none;
    border: 3px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn.primary {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.4);
}

.cta-btn.primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 51, 51, 0.6);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--warning-yellow);
    border-color: var(--warning-yellow);
}

.cta-btn.secondary:hover {
    background: var(--warning-yellow);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.6);
}

.cta-btn.tertiary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.cta-btn.tertiary:hover {
    background: var(--text-white);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

/* Tokenomics */
.tokenomics {
    margin: 80px 0;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.token-item {
    background: var(--bg-gray);
    border: 2px solid var(--text-gray);
    padding: 30px;
    transition: all 0.3s ease;
}

.token-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
}

.token-icon {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.token-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.token-info p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    background: var(--bg-gray);
    border: 2px solid var(--warning-yellow);
    padding: 30px;
    margin: 80px 0;
    text-align: center;
}

.disclaimer p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-gray);
    border-top: 3px solid var(--primary-color);
    padding: 60px 20px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.footer-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 10px 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 2px solid var(--text-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--text-gray);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-gray);
}

/* Animations */
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes sirenLeft {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes sirenRight {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@keyframes glitchScan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

@keyframes slideRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 70px 15px 15px;
    }
    
    .mugshot {
        width: 200px;
        height: 200px;
    }
    
    .hero h1 {
        letter-spacing: 5px;
    }
    
    .tagline {
        letter-spacing: 2px;
    }
    
    .alert-box {
        flex-direction: column;
        text-align: center;
    }
    
    .alert-icon {
        width: 100%;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .police-tape-top,
    .police-tape-bottom {
        height: 40px;
    }
    
    .section-title {
        letter-spacing: 4px;
    }
    
    .contract-address {
        font-size: 10px;
        padding: 15px;
    }
    
    .step-number {
        font-size: 36px;
    }
}

