@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: linear-gradient(135deg, #0f2027, #232526, #1a1a2e, #232526, #0f2027);
    background-size: 400% 400%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    animation: gradientBG 12s ease-in-out infinite;
    color: #00ff00;
    margin: 0; padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: #0f2027;
}

html {
    background: linear-gradient(135deg, #0f2027, #232526, #1a1a2e, #232526, #0f2027);
    background-size: 400% 400%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    animation: gradientBG 12s ease-in-out infinite;
    min-height: 100%;
    height: 100%;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(20,20,40,0.95);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 32px #00ff00, 0 0 8px #ff00ff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Scanline overlay */
header::after {
    content: '';
    pointer-events: none;
    position: absolute;
    z-index: 20;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.12) 0px,
        rgba(0,0,0,0.12) 1px,
        transparent 1px,
        transparent 4px
    );
    mix-blend-mode: multiply;
}

header h1 {
    font-size: 2.5em;
    color: #00ff00;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #00ff00, 0 0 32px #ff00ff;
    letter-spacing: 2px;
}

header .warning {
    font-size: 1.2em;
    color: #ff00ff;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 15px;
    background: rgba(255,0,255,0.1);
    border-radius: 8px;
    border-left: 4px solid #ff00ff;
    text-shadow: 0 0 8px #ff00ff;
}

header .subtitle {
    font-size: 1.1em;
    color: #aaa;
    font-style: italic;
}

.demo-section {
    background: rgba(20,20,40,0.95);
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 0 24px #00ff00, 0 0 8px #ff00ff;
    position: relative;
    overflow: hidden;
}

/* Scanline overlay for sections */
.demo-section::after {
    content: '';
    pointer-events: none;
    position: absolute;
    z-index: 20;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0px,
        rgba(0,0,0,0.08) 1px,
        transparent 1px,
        transparent 3px
    );
    mix-blend-mode: multiply;
}

.demo-section h2 {
    color: #00ff00;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
    text-shadow: 0 0 12px #00ff00;
    letter-spacing: 1px;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.demo-btn {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.demo-btn::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;
}

.demo-btn:hover::before {
    left: 100%;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.5);
    background: linear-gradient(45deg, #00ff00, #00ff80);
}

.demo-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
}

/* Special styling for FULL ANNOYANCE MODE button */
.demo-btn.full-annoyance {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    padding: 20px 25px;
    border: 3px solid #ff4444;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4);
    animation: pulseRed 2s infinite;
}

.demo-btn.full-annoyance:hover {
    background: linear-gradient(45deg, #ff0000, #ff4444);
    box-shadow: 0 0 30px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 0, 0, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.demo-btn.full-annoyance:active {
    transform: translateY(0) scale(1.02);
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 0, 0, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.4); }
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.fake-file {
    background: rgba(255,255,255,0.1);
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.fake-file:hover::before {
    left: 100%;
}

.fake-file:hover {
    background: rgba(255,255,255,0.2);
    border-color: #00ff80;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.file-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.file-name {
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 12px;
}

.file-size {
    color: #aaa;
    font-size: 11px;
}

.technical-analysis {
    background: rgba(20,20,40,0.98);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.analysis-card {
    background: rgba(30,30,50,0.9);
    border: 2px solid #00ff00;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff00, #00ff80, #00ff00);
}

.analysis-card.high-impact {
    border-color: #ff0000;
}

.analysis-card.high-impact::before {
    background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
}

.analysis-card.medium-impact {
    border-color: #ffaa00;
}

.analysis-card.medium-impact::before {
    background: linear-gradient(90deg, #ffaa00, #ffcc00, #ffaa00);
}

.analysis-card.red-team {
    border-color: #ff00ff;
}

.analysis-card.red-team::before {
    background: linear-gradient(90deg, #ff00ff, #ff44ff, #ff00ff);
}

.analysis-card.legal-ethical {
    border-color: #00aaff;
}

.analysis-card.legal-ethical::before {
    background: linear-gradient(90deg, #00aaff, #44ccff, #00aaff);
}

.analysis-card h3 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align: center;
    text-shadow: 0 0 8px #00ff00;
}

.analysis-card ul {
    list-style: none;
    padding: 0;
}

.analysis-card li {
    color: #ccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    line-height: 1.4;
}

.analysis-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-size: 10px;
}

.analysis-card.high-impact li::before {
    color: #ff0000;
}

.analysis-card.medium-impact li::before {
    color: #ffaa00;
}

.analysis-card.red-team li::before {
    color: #ff00ff;
}

.analysis-card.legal-ethical li::before {
    color: #00aaff;
}

.disclaimer {
    background: rgba(255,0,0,0.1);
    border: 2px solid #ff0000;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.disclaimer h3 {
    color: #ff0000;
    margin-bottom: 15px;
    font-size: 1.3em;
    text-shadow: 0 0 8px #ff0000;
}

.disclaimer p {
    color: #ffcccc;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.annoying-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(255,0,0,0.8);
}

.popup-content h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.popup-content button {
    background: white;
    color: #ff0000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
}

.logout-messages {
    background: rgba(255,0,0,0.1);
    border: 2px solid #ff0000;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.logout-messages h3 {
    color: #ff0000;
    margin-bottom: 15px;
}

.logout-messages div {
    color: #ffcccc;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Navigation Section */
.navigation {
    background: rgba(20,20,40,0.95);
    border: 2px solid #00ff00;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 0 16px #00ff00, 0 0 4px #ff00ff;
}

.navigation a {
    color: #00ff00;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 16px;
    border: 1px solid #00ff00;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-shadow: 0 0 8px #00ff00;
}

.navigation a:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 15px #00ff00;
    transform: translateY(-2px);
}

.navigation a:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
        padding: 15px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .button-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .demo-btn.full-annoyance {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px;
    }
    
    .demo-section {
        padding: 20px;
    }
    
    .demo-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .demo-btn.full-annoyance {
        padding: 14px 18px;
        font-size: 13px;
    }
}

/* ForgetfulElephant.net styles */
.hello-message {
    margin: 40px;
    text-align: center;
    color: #00ff00;
    text-shadow: 0 0 12px #00ff00, 0 0 32px #ff00ff;
}

.hello-message h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hello-message h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.hello-message h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #aaa;
}

.hello-message img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.logout-messages {
    pointer-events: none;
    color: red;
    margin: 40px;
    position: fixed;
    top: 0;
    left: 0;
    text-shadow: 2px 2px #FFF, 4px 4px 10px #000;
    z-index: 10000;
    font-size: 1.2em;
    font-weight: bold;
}

