/* $BAN TIKTOK - BANNED BUT NOT BROKEN */

/* CSS Variables for the banned aesthetic */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --ban-red: #FF0000;
    --tiktok-cyan: #25F4EE;
    --tiktok-pink: #FE2C55;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --shadow-red: 0 0 20px rgba(255, 0, 0, 0.5);
    --shadow-cyan: 0 0 20px rgba(37, 244, 238, 0.5);
    --shadow-pink: 0 0 20px rgba(254, 44, 85, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile */
    .btn-primary,
    .btn-secondary,
    .btn-buy-nav,
    .btn-copy-nav,
    .social-icon,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-buy-nav:hover,
    .social-icon:hover,
    .nav-link:hover {
        transform: none;
        box-shadow: inherit;
    }

    /* Add active states for better touch feedback */
    .btn-primary:active,
    .btn-secondary:active,
    .btn-buy-nav:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .social-icon:active {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Color Classes */
.banned-text {
    color: var(--ban-red);
    text-shadow: var(--shadow-red);
}

.pump-text {
    color: var(--tiktok-cyan);
    text-shadow: var(--shadow-cyan);
}

.army-text {
    color: var(--tiktok-pink);
    text-shadow: var(--shadow-pink);
}

.ban-text {
    color: var(--ban-red);
    text-shadow: var(--shadow-red);
}

.good {
    color: var(--tiktok-cyan);
    text-shadow: var(--shadow-cyan);
    font-weight: 900;
}

.highlight {
    color: var(--ban-red);
    font-weight: 900;
}

/* Mobile Navigation - FIRST - Under 1200px */
@media (max-width: 1200px) {
    /* Keep nav-container horizontal, just hide menu items */
    .nav-container {
        position: relative;
    }

    /* Hide contract and nav links on mobile */
    .nav-contract,
    .nav-links {
        display: none !important;
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Mobile dropdown menu */
    .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(16, 16, 16, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Style nav links in mobile menu */
    .nav-links.mobile-open .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        color: var(--text-primary);
        text-decoration: none;
    }

    /* Contract in mobile menu */
    .nav-links.mobile-open::before {
        content: "Contract: DiuN9ZLpS8VQPe3dLyFqYotYKxbWwRKPnsxXht9wpump";
        font-family: monospace;
        font-size: 0.75rem;
        color: var(--accent-color);
        background: rgba(0, 255, 255, 0.1);
        padding: 0.75rem;
        border-radius: 8px;
        text-align: center;
        word-break: break-all;
        border: 1px solid rgba(0, 255, 255, 0.2);
    }

    /* BUY button in mobile menu */
    .nav-links.mobile-open .btn-buy-nav {
        width: 100%;
        margin-top: 0.5rem;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* Contract address section mobile styles */
    .contract-address {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .contract-address code {
        word-break: break-all !important;
        text-align: center !important;
        max-width: 100% !important;
        font-size: 0.8rem !important;
        padding: 1rem !important;
    }

    .copy-btn {
        width: 100% !important;
        max-width: 200px !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }

    /* Contract display in nav mobile styles */
    .contract-display {
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .contract-code {
        word-break: break-all !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    /* Ban reason cards mobile styles */
    .ban-reasons-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }

    .ban-reason {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
        min-width: auto !important;
        max-width: 100% !important;
    }

    .ban-reason h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .ban-reason p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .ban-icon {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }

    .ban-badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.6rem !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-contract {
    display: flex;
    align-items: center;
}

.contract-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.contract-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.contract-code {
    color: var(--tiktok-cyan);
    font-family: monospace;
    font-size: 0.75rem;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy-nav {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-copy-nav:hover {
    background: var(--bg-secondary);
    color: var(--tiktok-cyan);
}

.logo-svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--ban-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ban-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    /* No hover animation */
}

.btn-buy-nav {
    background: linear-gradient(135deg, var(--ban-red) 0%, #CC0000 100%);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-buy-nav:hover {
    /* No hover animation */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.1) 0%, var(--bg-primary) 70%);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.giant-ban-logo {
    position: relative;
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

.ban-svg {
    width: 100%;
    height: 100%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(2px, 2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, -2px);
        filter: hue-rotate(360deg);
    }
    50% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    60% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(180deg);
    }
    70% {
        transform: translate(2px, 2px);
        filter: hue-rotate(270deg);
    }
    80% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(360deg);
    }
    90% {
        transform: translate(2px, 2px);
        filter: hue-rotate(90deg);
    }
}

.glitching {
    animation: glitch 3s infinite;
}

.emerging {
    opacity: 0;
    animation: emerge 3s infinite 1.5s;
}

@keyframes glitch {
    0%, 20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    25% { opacity: 0.8; transform: translate(-48%, -52%) scale(1.1); }
    30% { opacity: 0.6; transform: translate(-52%, -48%) scale(0.9); }
    35% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
    40% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

@keyframes emerge {
    0%, 50% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    60% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.5); }
    70% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
    80% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
    90%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ban-red);
    text-shadow: var(--shadow-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

/* Community Section */
.community-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.community-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006bb3 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.social-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-icon:hover:before {
    left: 100%;
}

.share-ban-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--ban-red) 0%, #CC0000 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-ban-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #FF1a1a 0%, var(--ban-red) 100%);
}

.share-ban-button svg {
    flex-shrink: 0;
}

/* Banned Section */
.banned-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.ban-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ban-reason {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.ban-reason:hover {
    /* No hover animation */
}

.ban-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ban-reason h3 {
    color: var(--ban-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ban-reason p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ban-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--ban-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ban-cta {
    text-align: center;
    background: var(--bg-tertiary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.ban-cta h3 {
    margin-bottom: 1.5rem;
    color: var(--tiktok-cyan);
}

.btn-submit-ban {
    background: linear-gradient(135deg, var(--tiktok-pink) 0%, #CC1744 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.btn-submit-ban:hover {
    /* No hover animation */
}

/* Pump Section */
.pump-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pump-formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.formula-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    min-width: 150px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-text {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.formula-arrow {
    font-size: 2rem;
    color: var(--tiktok-cyan);
    font-weight: bold;
}

.pump-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pump-stat-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.pump-stat-card:hover {
    /* No hover animation */
}

.pump-stat-card h3 {
    font-size: 2.5rem;
    color: var(--tiktok-cyan);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.pump-stat-card p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-note {
    font-size: 0.8rem;
    opacity: 0.6;
}

.pump-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    /* No hover animation */
}

.feature-card h4 {
    color: var(--tiktok-pink);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Army Section */
.army-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.army-ranks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.rank-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.rank-card.featured {
    border-color: var(--tiktok-pink);
    box-shadow: 0 0 20px rgba(254, 44, 85, 0.3);
    transform: scale(1.05);
}

.rank-card:hover {
    /* No hover animation */
}

.rank-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rank-card h3 {
    color: var(--ban-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.rank-requirement {
    color: var(--tiktok-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rank-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.rank-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0.8;
}

.rank-benefits li:last-child {
    border-bottom: none;
}

.army-cta {
    text-align: center;
    background: var(--bg-tertiary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.army-cta h3 {
    margin-bottom: 2rem;
    color: var(--tiktok-pink);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Dopamine Section */
.dopamine-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.dopamine-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.dopamine-formula {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.dopamine-step {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

.dopamine-step .step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dopamine-step .step-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.dopamine-explanation {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.dopamine-explanation p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.dopamine-explanation strong {
    color: var(--tiktok-pink);
}

.dopamine-conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tiktok-cyan);
    margin-top: 1.5rem !important;
}

@media (max-width: 768px) {
    .dopamine-formula {
        flex-direction: column;
        gap: 1rem;
    }

    .formula-arrow {
        transform: rotate(90deg);
    }
}

/* Primary and Secondary Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--ban-red) 0%, #CC0000 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: var(--shadow-red);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--tiktok-cyan) 0%, #1AA3A3 100%);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(26, 163, 163, 0.3);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
}

/* Buy Section */
.buy-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.buy-step {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.buy-step:hover {
    /* No hover animation */
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ban-red);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content h3 {
    color: var(--tiktok-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.step-content p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2rem;
    margin-top: 1rem;
}

.buy-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-buy-pumpfun, .btn-buy-dexscreener, .btn-buy-axiom, .btn-buy-bullx {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-buy-pumpfun {
    background: linear-gradient(135deg, var(--ban-red) 0%, #CC0000 100%);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-buy-axiom {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-buy-bullx {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-buy-dexscreener {
    background: linear-gradient(135deg, var(--tiktok-cyan) 0%, #1AA3A3 100%);
    color: var(--bg-primary);
}

.btn-buy-pumpfun:hover, .btn-buy-dexscreener:hover, .btn-buy-axiom:hover, .btn-buy-bullx:hover {
    /* No hover animation */
}

.contract-info {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.contract-info h3 {
    color: var(--ban-red);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contract-address code {
    background: var(--bg-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    color: var(--tiktok-cyan);
}

.copy-btn {
    background: var(--ban-red);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    /* No hover animation */
}

.contract-warning {
    font-size: 0.9rem;
    color: #FFA500;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--accent-green);
    border-bottom: 3px solid var(--accent-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Hall of Fame Section */
.hall-of-fame {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.ban-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ban-card {
    background: var(--bg-tertiary);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ban-card:hover {
    /* No hover animation */
}

.ban-screenshot {
    background: #ff4444;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.fake-notification {
    background: white;
    color: #333;
    border-radius: 8px;
    padding: 1rem;
}

.notification-header {
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 0.5rem;
}

.notification-body {
    font-size: 0.9rem;
    color: #666;
}

.ban-info {
    text-align: center;
}

.username {
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.quote {
    font-style: italic;
    color: var(--text-secondary);
}

.btn-submit-ban, .btn-submit-meme {
    display: block;
    margin: 0 auto;
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-blue));
    color: var(--text-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-pink);
}

.btn-submit-ban:hover, .btn-submit-meme:hover {
    /* No hover animation */
}

/* Tokenomics Section */
.tokenomics {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stat-circles {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-circle {
    text-align: center;
}

.circle-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.circle-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring {
    transition: stroke-dashoffset 2s ease-in-out;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.circle-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.tokenomics-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tokenomics-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.feature-text {
    color: var(--text-secondary);
}

.feature-text strong {
    color: var(--text-primary);
}

/* To The Moon Section */
.roadmap {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.moon-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.target-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.target-card:hover {
    /* No hover animation */
}

.target-card.completed {
    border-color: var(--accent-green);
    background: rgba(0, 255, 0, 0.05);
}

.target-card.in-progress {
    border-color: var(--accent-pink);
    background: rgba(255, 0, 127, 0.05);
    animation: pulse 3s infinite;
}

.target-card.planned {
    border-color: var(--accent-blue);
    background: rgba(99, 102, 241, 0.05);
}

.target-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.target-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.target-metric {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.target-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.pump-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pump-stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.pump-stat .stat-number {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pump-stat .stat-label {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pump-stat .stat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(255, 0, 127, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 127, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 127, 0.3); }
}

/* Community Section */
.community {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.social-feed {
    background: var(--bg-tertiary);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tweet-embed {
    text-align: center;
    color: var(--text-secondary);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-btn:hover {
    /* No hover animation */
}

.social-icon {
    font-size: 1.2rem;
}

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.meme-item {
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.meme-item:hover {
    /* No hover animation */
}

.meme-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.meme-placeholder span {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.meme-placeholder p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* How to Buy Section */
.how-to-buy {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.buy-step {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.buy-step:hover {
    /* No hover animation */
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-pink));
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h3 {
    margin: 1rem 0;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.wallet-logos, .crypto-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.wallet-logo, .crypto-logo {
    font-size: 2rem;
}

.btn-dex {
    background: var(--accent-blue);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.btn-dex:hover {
    /* No hover animation */
}

.contract-address {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contract-address input {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 5px;
    font-family: monospace;
}

.btn-copy {
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    /* No hover animation */
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.footer-social-link[title*="Twitter"] {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.footer-social-link[title*="Telegram"] {
    background: linear-gradient(135deg, #0088cc 0%, #006bb3 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.footer-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-social-link svg {
    width: 24px;
    height: 24px;
}

.footer-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.footer-disclaimer p {
    margin-bottom: 0.5rem;
}

/* Modals */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Force hide modals by ID */
#banSubmissionModal,
#memeSubmissionModal {
    display: none !important;
    visibility: hidden !important;
}

.modal-content {
    background-color: var(--bg-secondary);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    /* No hover animation */
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal input, .modal textarea {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 8px;
    font-family: inherit;
}

.modal input:focus, .modal textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.modal textarea {
    min-height: 100px;
    resize: vertical;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 0, 0.6), 0 0 60px rgba(255, 0, 127, 0.3); }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Enhanced hover effects - stable, no movement */
.ban-card:hover {
    /* No hover animation */
}

.btn-primary:hover, .btn-secondary:hover {
    /* No hover animation */
}

/* Loading animation for progress circles */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-progress.loading svg {
    animation: spin 2s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* General mobile layout adjustments */
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .community-section { padding: 3rem 0; }
    .social-icons { gap: 1.5rem; }
    .social-icon { width: 60px; height: 60px; }
    .share-ban-button { font-size: 1rem; padding: 0.875rem 1.5rem; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    .tokenomics-grid, .community-grid { grid-template-columns: 1fr; gap: 2rem; }
    .moon-targets { grid-template-columns: 1fr; gap: 1.5rem; }
    .pump-stats { grid-template-columns: 1fr; gap: 1rem; }
    .buy-steps { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 1rem; }
    .social-buttons { flex-direction: column; gap: 0.5rem; }
    .contract-address { flex-direction: column; gap: 0.5rem; }
    .hero-content { padding: 0 1rem; }
    .container { padding: 0 15px; }
    .ban-cards-container { grid-template-columns: 1fr; gap: 1.5rem; }
    .stat-circles { flex-direction: column; align-items: center; gap: 1.5rem; }
    .meme-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .ban-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ban-reason {
        padding: 1.5rem;
    }

    .stat-circles {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .buy-buttons {
        gap: 0.75rem;
    }

    .btn-buy-pumpfun,
    .btn-buy-axiom,
    .btn-buy-bullx,
    .btn-buy-dexscreener {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .pump-stat-card,
    .feature-card,
    .target-card {
        padding: 1.5rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }
}



/* Additional mobile optimizations */
@media (max-width: 768px) {
    /* Improve text readability on mobile */
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Better spacing for sections on mobile */
    .hero,
    .banned-section,
    .pump-section,
    .dopamine-section,
    .community-section,
    .roadmap,
    .buy-section {
        padding: 4rem 0;
    }

    /* Improve button spacing on mobile */
    .hero-buttons,
    .buy-buttons {
        margin-top: 2rem;
    }

    /* Better card spacing on mobile */
    .ban-reason,
    .pump-stat-card,
    .feature-card,
    .target-card {
        margin-bottom: 1rem;
    }

    /* Improve contract display on mobile */
    .contract-display {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .contract-code {
        word-break: break-all;
        text-align: center;
    }

    /* Better social icons layout */
    .social-icons {
        justify-content: center;
        margin: 2rem 0;
    }

    /* Improve footer on mobile */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-disclaimer {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-disclaimer p {
        margin-bottom: 0.5rem;
    }
}

/* Landscape orientation optimizations for small screens */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-stats {
        margin: 1rem 0;
    }

    .giant-ban-logo {
        width: 200px;
        height: 200px;
    }
}


