/* CAMO COIN Stealth Stylesheet */
:root {
    --camo-green-1: #4a5d23;
    --camo-green-2: #5c6b2a;
    --camo-green-3: #3d4a1c;
    --camo-brown-1: #8b6914;
    --camo-brown-2: #6b4e0a;
    --camo-brown-3: #a0771a;
    --camo-tan: #d4b896;
    --night-vision: #00ff41;
    --stealth-gray: #2a2a2a;
    --danger-red: #ff0000;
}

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

body {
    font-family: 'Orbitron', monospace;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Base Camouflage Background */
.camo-background {
    background: url('background.webp') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



/* Removed Night Vision Mode */

/* Connection Lost Overlay */
.connection-lost {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.connection-lost.active {
    display: flex;
}

.glitch-text {
    font-size: 3rem;
    color: var(--danger-red);
    text-transform: uppercase;
    animation: glitch 0.5s infinite;
}

.reconnecting {
    font-size: 1.2rem;
    color: var(--night-vision);
    margin-top: 20px;
    animation: blink 1s infinite;
}

@keyframes glitch {
    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 blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Sniper Scope */
.sniper-scope {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.sniper-scope.active {
    display: flex;
}

.crosshairs {
    width: 200px;
    height: 200px;
    border: 2px solid var(--danger-red);
    border-radius: 50%;
    position: relative;
}

.crosshairs::before,
.crosshairs::after {
    content: '';
    position: absolute;
    background: var(--danger-red);
}

.crosshairs::before {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.crosshairs::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.scope-text {
    position: absolute;
    bottom: 20%;
    font-size: 1.5rem;
    color: var(--danger-red);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Navigation */
.stealth-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(74, 93, 35, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--camo-tan);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.camo-link {
    color: var(--camo-tan);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    position: relative;
}

.camo-link:hover {
    opacity: 1;
    text-shadow: 0 0 10px var(--camo-tan);
}

/* Removed Night Vision Button Styles */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    text-align: center;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.glitch-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--camo-tan);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}



.subtitle {
    font-size: 1.8rem;
    color: rgba(107, 78, 10, 0.3);
    margin-bottom: 2rem;
    opacity: 0.2;
    text-shadow: none;
}

.hero-taglines {
    margin-bottom: 3rem;
}

.fade-text {
    font-size: 1.2rem;
    color: rgba(74, 93, 35, 0.2);
    margin: 1rem 0;
    opacity: 0;
    animation: fadeInOut 6s ease-in-out infinite;
}

.fade-text:nth-child(2) { animation-delay: 2s; }
.fade-text:nth-child(3) { animation-delay: 4s; }

@keyframes fadeInOut {
    0%, 20%, 80%, 100% { opacity: 0; }
    40%, 60% { opacity: 0.1; }
}

/* Hidden Buttons (The main gag) */
.hidden-btn, .hidden-buy-btn, .hidden-social-btn, .pump-btn {
    background: rgba(74, 93, 35, 0.02);
    border: 2px solid rgba(92, 107, 42, 0.02);
    color: rgba(61, 74, 28, 0.02);
    padding: 1rem 2rem;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.02;
    position: relative;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hidden-btn:hover, .hidden-buy-btn:hover, .hidden-social-btn:hover, .pump-btn:hover {
    opacity: 0.1;
    background: rgba(212, 184, 150, 0.05);
    color: rgba(42, 42, 42, 0.1);
    box-shadow: none;
}

/* Floating Tokens */
.floating-tokens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.token {
    position: absolute;
    color: rgba(139, 105, 20, 0.05);
    font-weight: 700;
    font-size: 1.2rem;
    opacity: 0.02;
    animation: float 8s ease-in-out infinite;
}

.token-1 { top: 20%; left: 10%; animation-delay: 0s; }
.token-2 { top: 60%; right: 20%; animation-delay: 2s; }
.token-3 { bottom: 30%; left: 60%; animation-delay: 4s; }

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

/* Section Styling */
.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: rgba(92, 107, 42, 0.15);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: none;
}

/* About Section */
.binocular-text {
    text-align: center;
    margin-bottom: 3rem;
}

.adjusting-text {
    font-size: 1.2rem;
    color: rgba(61, 74, 28, 0.15);
    margin: 1rem 0;
    opacity: 0;
    animation: binocularAdjust 4s ease-in-out infinite;
}

.adjusting-text:nth-child(2) { animation-delay: 1s; }
.adjusting-text:nth-child(3) { animation-delay: 2s; }
.adjusting-text:nth-child(4) { animation-delay: 3s; }

@keyframes binocularAdjust {
    0%, 70%, 100% { opacity: 0; transform: scale(0.8); }
    35% { opacity: 0.05; transform: scale(1); }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(74, 93, 35, 0.2);
    border-radius: 10px;
}

.camo-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: var(--camo-green-1);
    border-radius: 50%;
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 30%, var(--camo-brown-1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, var(--camo-green-2) 0%, transparent 50%);
}

.name-tag {
    background: var(--stealth-gray);
    color: var(--camo-tan);
    padding: 0.5rem 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role {
    color: var(--camo-brown-3);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tokenomics-item {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 105, 20, 0.03);
    border-radius: 10px;
}

.tokenomics-item h3 {
    color: rgba(92, 107, 42, 0.12);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.classified-text {
    font-family: 'Courier Prime', monospace;
    color: rgba(74, 93, 35, 0.08);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(42, 42, 42, 0.1);
    padding: 1rem;
    border-radius: 5px;
    letter-spacing: 2px;
}

.camo-chart {
    text-align: center;
}

.pie-chart-camo {
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    border-radius: 50%;
    background: var(--camo-background);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-label {
    color: rgba(61, 74, 28, 0.1);
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

/* Buy Section */
.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(74, 93, 35, 0.03);
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(139, 105, 20, 0.05);
    color: rgba(212, 184, 150, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.step-content h3 {
    color: rgba(74, 93, 35, 0.08);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.step-content p {
    color: rgba(61, 74, 28, 0.06);
    margin-bottom: 1rem;
}

/* Hunt Game */
.hunt-game {
    background: rgba(139, 105, 20, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-top: 3rem;
}

.hunt-game h3 {
    color: var(--camo-tan);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.score {
    font-size: 1.2rem;
    color: var(--night-vision);
    font-weight: 700;
    margin: 1rem 0;
}

.hunt-area {
    height: 300px;
    position: relative;
    background: var(--camo-background);
    border-radius: 10px;
    overflow: hidden;
}

.hidden-token {
    position: absolute;
    color: rgba(61, 74, 28, 0.02);
    font-weight: 700;
    cursor: pointer;
    opacity: 0.01;
    transition: all 0.3s ease;
    user-select: none;
}

.hidden-token:hover {
    opacity: 0.05;
    transform: scale(1.2);
    color: rgba(74, 93, 35, 0.1);
}

.hidden-token:nth-child(1) { top: 20%; left: 15%; }
.hidden-token:nth-child(2) { top: 60%; right: 20%; }
.hidden-token:nth-child(3) { bottom: 30%; left: 50%; }
.hidden-token:nth-child(4) { top: 40%; left: 70%; }
.hidden-token:nth-child(5) { bottom: 20%; right: 40%; }

/* Roadmap */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin: 2rem 0;
    align-items: center;
    gap: 2rem;
}

.phase-marker {
    background: var(--camo-brown-1);
    color: var(--camo-tan);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 120px;
    text-align: center;
}

.timeline-item.completed .phase-marker {
    background: var(--night-vision);
    color: black;
}

.timeline-item.active .phase-marker {
    background: var(--danger-red);
    animation: pulse 2s infinite;
}

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

.phase-content {
    flex: 1;
    padding: 2rem;
    background: rgba(74, 93, 35, 0.2);
    border-radius: 10px;
}

.phase-content h3 {
    color: var(--camo-tan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.phase-content p {
    color: var(--camo-brown-3);
    margin-bottom: 1rem;
}

.status {
    font-family: 'Courier Prime', monospace;
    color: var(--night-vision);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.social-item {
    padding: 2rem;
    background: rgba(139, 105, 20, 0.02);
    border-radius: 10px;
}

.social-item h3 {
    color: rgba(74, 93, 35, 0.1);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.camo-background-small {
    background: rgba(74, 93, 35, 0.2);
    color: rgba(61, 74, 28, 0.05);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-style: italic;
    opacity: 0.1;
}

.discord-channels {
    margin: 1rem 0;
}

.channel {
    background: var(--stealth-gray);
    color: var(--night-vision);
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    font-family: 'Courier Prime', monospace;
}

.telegram-info p {
    color: var(--camo-brown-3);
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0;
    text-align: center;
}

.disclaimer .tiny-text {
    color: rgba(61, 74, 28, 0.02);
    font-size: 0.7rem;
    opacity: 0.02;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

.footer-taglines p {
    color: rgba(61, 74, 28, 0.03);
    margin: 0.5rem 0;
    font-style: italic;
    opacity: 0.05;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--camo-background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: var(--danger-red);
    cursor: pointer;
}

#webcam-container {
    position: relative;
    margin: 2rem 0;
}

#webcam, #camo-overlay {
    width: 300px;
    height: 200px;
    border-radius: 10px;
}

#camo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .glitch-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-section {
        padding: 1rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .tokenomics-grid,
    .social-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hunt-area {
        height: 200px;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 1rem;
    }
    
    #webcam, #camo-overlay {
        width: 250px;
        height: 150px;
    }
    
    /* Mobile touch improvements */
    .hidden-btn, .hidden-buy-btn, .hidden-social-btn {
        opacity: 0.02;
        min-height: 44px;
        min-width: 120px;
    }
    
    .hidden-token {
        opacity: 0.02;
        font-size: 1.1rem;
        min-width: 60px;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Larger tap targets */
    .camo-link {
        padding: 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Mobile-specific camo background adjustments */
    .camo-background {
        background-size: cover;
        background-attachment: scroll; /* Better performance on mobile */
    }
}

@media (max-width: 480px) {
    .glitch-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-taglines .fade-text {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .buy-steps {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        padding: 0 1rem;
    }
    
    .phase-marker {
        font-size: 0.8rem;
        padding: 0.5rem;
        min-width: 100px;
    }
    
    .disclaimer .tiny-text {
        font-size: 0.6rem;
    }
}

/* Special Effects */
.stealth-mode {
    opacity: 0.1;
    transition: opacity 2s ease;
}

.enemy-spotted {
    animation: enemyAlert 1s ease-in-out;
}

@keyframes enemyAlert {
    0%, 100% { background-color: transparent; }
    50% { background-color: rgba(255, 0, 0, 0.2); }
}