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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 25%, #87CEEB 50%, #B0E0E6 75%, #87CEEB 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Glitch Background */
.glitch-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 255, 0.1) 0%, transparent 50%);
    animation: glitchBg 3s ease-in-out infinite alternate;
    z-index: -1;
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitchBg {
    0% { opacity: 0.3; transform: translateX(0); }
    25% { opacity: 0.5; transform: translateX(-2px); }
    50% { opacity: 0.3; transform: translateX(2px); }
    75% { opacity: 0.4; transform: translateX(-1px); }
    100% { opacity: 0.3; transform: translateX(0); }
}

@keyframes glitchText {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitchColor {
    0% { color: #fff; text-shadow: 0 0 5px #fff; }
    25% { color: #ff0000; text-shadow: 0 0 5px #ff0000; }
    50% { color: #00ff00; text-shadow: 0 0 5px #00ff00; }
    75% { color: #0000ff; text-shadow: 0 0 5px #0000ff; }
    100% { color: #fff; text-shadow: 0 0 5px #fff; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Background Images */
.background-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.bg-image {
    position: absolute;
    opacity: 0.15;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: float 12s ease-in-out infinite;
}

.bg-image-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: url('img_1.svg');
    animation-delay: 0s;
}

.bg-image-2 {
    top: 20%;
    right: 10%;
    width: 180px;
    height: 180px;
    background-image: url('img_2.svg');
    animation-delay: 2s;
}

.bg-image-3 {
    top: 60%;
    left: 8%;
    width: 160px;
    height: 160px;
    background-image: url('img_3.svg');
    animation-delay: 4s;
}

.bg-image-4 {
    bottom: 20%;
    right: 15%;
    width: 190px;
    height: 190px;
    background-image: url('img_4.svg');
    animation-delay: 6s;
}

.bg-image-5 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    background-image: url('img_5.svg');
    animation-delay: 8s;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 10px 0;
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.header-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glitchText 3s ease-in-out infinite;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.8);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-ca-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-ca-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff5252, #26a69a);
}

.nav-ca-button:active {
    transform: translateY(0);
}

.ca-text {
    display: block;
}

.ca-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-ca-button:hover .ca-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Adjust main container for fixed header */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 20px; /* Added top padding for fixed header */
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.hero-image {
    margin-bottom: 30px;
}

.hero-svg {
    max-width: 100%;
    height: auto;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.conspiracy-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.chinese-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1.2rem;
    color: #ffeb3b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    display: block;
    margin-top: 10px;
}

/* Glitch Text Effect */
.glitch-text {
    animation: glitchText 2s ease-in-out infinite, glitchColor 3s ease-in-out infinite;
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitchText 2s ease-in-out infinite reverse;
    color: #ff0000;
    z-index: -1;
}

.glitch-text::after {
    animation: glitchText 2s ease-in-out infinite reverse;
    color: #00ff00;
    z-index: -2;
}

/* Cards */
.conspiracy-card,
.contract-card,
.social-card,
.warning-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.conspiracy-card:hover,
.contract-card:hover,
.social-card:hover,
.warning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.conspiracy-card::before,
.contract-card::before,
.social-card::before,
.warning-card::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;
}

.conspiracy-card:hover::before,
.contract-card:hover::before,
.social-card:hover::before,
.warning-card:hover::before {
    left: 100%;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.warning-title {
    color: #ff4444;
    animation: shake 1s ease-in-out infinite;
}

/* Conspiracy Content */
.conspiracy-content {
    text-align: center;
}

.conspiracy-paragraph {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Video Container */
.video-container {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conspiracy-video {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.video-caption {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #ffeb3b;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', monospace;
}

/* Contract Section */
.contract-info {
    text-align: center;
}

.contract-label {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contract-address-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contract-input {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    min-width: 300px;
    text-align: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contract-input:focus {
    outline: none;
    border-color: #ffeb3b;
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
}

.copy-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff5252, #26a69a);
}

.copy-button:active {
    transform: translateY(0);
}

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

.contract-note {
    font-size: 0.9rem;
    color: #ffeb3b;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Special styling for trading links */
.pump-link {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: rgba(255, 107, 53, 0.3);
}

.pump-link:hover {
    background: linear-gradient(45deg, #ff5722, #ff9800);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.dex-link {
    background: linear-gradient(45deg, #2196f3, #21cbf3);
    border-color: rgba(33, 150, 243, 0.3);
}

.dex-link:hover {
    background: linear-gradient(45deg, #1976d2, #00bcd4);
    border-color: rgba(33, 150, 243, 0.5);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.3);
}

.pump-link .social-icon,
.dex-link .social-icon {
    background: rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-name {
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-handle {
    font-size: 1rem;
    color: #ffeb3b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Warning Section */
.warning-content {
    text-align: center;
}

.warning-text {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-can,
.floating-symbol {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-can:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-can:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-can:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-symbol:nth-child(4) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.floating-symbol:nth-child(5) {
    top: 70%;
    left: 15%;
    animation-delay: 3s;
}

.floating-symbol:nth-child(6) {
    bottom: 20%;
    right: 30%;
    animation-delay: 5s;
}

/* Mobile Header Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .header-title {
        font-size: 1.2rem;
    }
    
    .header-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-ca-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 120px 15px 15px; /* Increased top padding for mobile header */
    }
    
    /* Adjust background images for mobile */
    .bg-image {
        opacity: 0.1; /* More transparent on mobile */
    }
    
    .bg-image-1,
    .bg-image-2,
    .bg-image-3,
    .bg-image-4,
    .bg-image-5 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .header-nav {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-ca-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 110px 10px 10px;
    }
    
    /* Hide some background images on small mobile */
    .bg-image-4,
    .bg-image-5 {
        display: none;
    }
    
    .bg-image-1,
    .bg-image-2,
    .bg-image-3 {
        width: 80px;
        height: 80px;
        opacity: 0.08;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-svg {
        max-width: 600px;
    }
    
    .conspiracy-text {
        font-size: 1.8rem;
    }
    
    .chinese-text {
        font-size: 1.4rem;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .hero-svg {
        max-width: 500px;
    }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        padding: 20px;
        max-width: 100%;
    }
    
    .hero {
        margin-bottom: 50px;
        padding: 30px 0;
    }
    
    .hero-svg {
        max-width: 400px;
    }
    
    .conspiracy-text {
        font-size: 1.4rem;
    }
    
    .chinese-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        padding: 25px;
        margin-bottom: 35px;
    }
    
    .contract-address-container {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contract-input {
        min-width: 280px;
        font-size: 0.95rem;
    }
    
    .social-links {
        max-width: 600px;
    }
    
    .social-link {
        padding: 18px;
        gap: 18px;
    }
    
    .social-icon {
        font-size: 1.8rem;
        width: 55px;
        height: 55px;
    }
    
    .social-name {
        font-size: 1.1rem;
    }
    
    .social-handle {
        font-size: 0.95rem;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        padding: 15px;
    }
    
    .hero {
        margin-bottom: 40px;
        padding: 25px 0;
    }
    
    .hero-svg {
        max-width: 350px;
    }
    
    .conspiracy-text {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .chinese-text {
        font-size: 1rem;
        margin-top: 8px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 15px;
    }
    
    .conspiracy-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .contract-label {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contract-address-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .contract-input {
        min-width: 280px;
        font-size: 0.9rem;
        padding: 14px 18px;
        text-align: center;
    }
    
    .copy-button {
        padding: 14px 22px;
        font-size: 0.95rem;
        min-width: 120px;
    }
    
    .social-links {
        max-width: 100%;
        gap: 15px;
    }
    
    .social-link {
        padding: 16px;
        gap: 16px;
        border-radius: 12px;
    }
    
    .social-icon {
        font-size: 1.6rem;
        width: 50px;
        height: 50px;
    }
    
    .social-name {
        font-size: 1rem;
    }
    
    .social-handle {
        font-size: 0.9rem;
    }
    
    .warning-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Reduce floating elements on tablets */
    .floating-can,
    .floating-symbol {
        font-size: 1.5rem;
        opacity: 0.2;
    }
}

/* Mobile Landscape (480px to 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .container {
        padding: 12px;
    }
    
    .hero {
        margin-bottom: 35px;
        padding: 20px 0;
    }
    
    .hero-svg {
        max-width: 300px;
    }
    
    .conspiracy-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .chinese-text {
        font-size: 0.95rem;
        margin-top: 6px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        padding: 18px;
        margin-bottom: 25px;
        border-radius: 12px;
    }
    
    .conspiracy-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .contract-label {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contract-input {
        min-width: 250px;
        font-size: 0.85rem;
        padding: 12px 15px;
    }
    
    .copy-button {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-width: 110px;
    }
    
    .social-link {
        padding: 14px;
        gap: 14px;
    }
    
    .social-icon {
        font-size: 1.4rem;
        width: 45px;
        height: 45px;
    }
    
    .social-name {
        font-size: 0.95rem;
    }
    
    .social-handle {
        font-size: 0.85rem;
    }
    
    .warning-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Mobile Portrait (320px to 479px) */
@media (max-width: 479px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .hero-svg {
        max-width: 250px;
    }
    
    .conspiracy-text {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .chinese-text {
        font-size: 0.9rem;
        margin-top: 5px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    
    .conspiracy-paragraph {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .contract-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .contract-input {
        min-width: 200px;
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .copy-button {
        padding: 10px 15px;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        padding: 12px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .social-icon {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .social-name {
        font-size: 0.9rem;
    }
    
    .social-handle {
        font-size: 0.8rem;
    }
    
    .warning-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .contract-note {
        font-size: 0.8rem;
    }
    
    /* Hide some floating elements on small mobile */
    .floating-can:nth-child(3),
    .floating-symbol:nth-child(6) {
        display: none;
    }
    
    .floating-can,
    .floating-symbol {
        font-size: 1.2rem;
        opacity: 0.15;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 8px;
    }
    
    .hero-svg {
        max-width: 200px;
    }
    
    .conspiracy-text {
        font-size: 0.9rem;
    }
    
    .chinese-text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contract-input {
        min-width: 180px;
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .copy-button {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 90px;
    }
    
    .social-link {
        padding: 10px;
        gap: 10px;
    }
    
    .social-icon {
        font-size: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .social-name {
        font-size: 0.85rem;
    }
    
    .social-handle {
        font-size: 0.75rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Mobile touch devices */
    .copy-button,
    .social-link {
        min-height: 44px; /* Apple's recommended minimum touch target */
    }
    
    .contract-input {
        min-height: 44px;
    }
    
    /* Reduce hover effects on touch devices */
    .conspiracy-card:hover,
    .contract-card:hover,
    .social-card:hover,
    .warning-card:hover {
        transform: none;
    }
    
    .social-link:hover {
        transform: none;
    }
    
    .copy-button:hover {
        transform: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .glitch-bg {
        animation: none;
    }
    
    .hero-svg {
        animation: none;
    }
    
    .glitch-text {
        animation: none;
    }
    
    .floating-can,
    .floating-symbol {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        border-width: 3px;
        border-color: #fff;
    }
    
    .conspiracy-text,
    .section-title,
    .conspiracy-paragraph {
        text-shadow: 2px 2px 4px #000;
    }
}

/* Print styles */
@media print {
    .glitch-bg,
    .floating-elements {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .conspiracy-card,
    .contract-card,
    .social-card,
    .warning-card {
        background: white;
        border: 2px solid black;
        box-shadow: none;
    }
}
