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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2a2a2a 50%, #3a3a3a 75%, #4a4a4a 100%);
    color: #00ff88;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
        "header header"
        "main news"
        "footer footer";
    gap: 30px;
    min-height: 100vh;
    align-items: start;
}

/* Header Styles - Army Theme */
.header {
    grid-area: header;
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a, #3a3a3a);
    border-radius: 20px;
    border: 3px solid #00ff88;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 212, 255, 0.03) 50%, transparent 70%);
    animation: armyScan 8s linear infinite;
}

@keyframes armyScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #ff0066, #ffaa00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -3px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.logo::after {
    content: 'MILITARY INTELLIGENCE';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #00ff88;
    text-shadow: none;
    -webkit-text-fill-color: #00ff88;
    letter-spacing: 2px;
    opacity: 0.8;
}

.subtitle {
    font-size: 1.3rem;
    color: #00ff88;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px #00ff88;
    position: relative;
    z-index: 1;
    border: 1px solid #00ff88;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.1);
    display: inline-block;
}

/* Main Content Styles */
.main-content {
    grid-area: main;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Status Section */
.status-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 3px solid #00ff88;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.1) 50%, transparent 70%);
    animation: radarScan 4s linear infinite;
}

.status-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 102, 0.05) 0%, transparent 50%);
    animation: threatPulse 6s ease-in-out infinite;
}

@keyframes radarScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes threatPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.status-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: #00ff88;
}

.main-question {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #00ff88;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.status-light {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 
        0 0 30px #00ff88,
        0 0 60px #00ff88,
        0 0 90px #00ff88;
    animation: pulseGlow 2s ease-in-out infinite;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
}

.status-light::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    opacity: 0.3;
    animation: rotate 3s linear infinite;
}

.status-light.conflict {
    background: #ff0066;
    box-shadow: 
        0 0 30px #ff0066,
        0 0 60px #ff0066,
        0 0 90px #ff0066;
}

.status-light.conflict::before {
    background: linear-gradient(45deg, #ff0066, #ffaa00);
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px currentColor,
            0 0 60px currentColor,
            0 0 90px currentColor;
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            0 0 40px currentColor,
            0 0 80px currentColor,
            0 0 120px currentColor;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.status-text {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff88;
    transition: all 0.5s ease;
    text-shadow: 0 0 20px #00ff88;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.status-text.conflict {
    color: #ff0066;
    text-shadow: 0 0 20px #ff0066;
}

.status-description {
    font-size: 1.2rem;
    color: #00ff88;
    margin-top: 15px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Map Section */
.map-section {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 3px solid #00ff88;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    position: relative;
}

.map-section h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section h3 i {
    color: #00ff88;
    animation: radarPulse 2s ease-in-out infinite;
}

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

.world-map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 3px solid #00ff88;
    background: rgba(0, 0, 0, 0.5);
}

.world-map .leaflet-container {
    background: rgba(0, 0, 0, 0.8);
}

.world-map .leaflet-control-attribution {
    display: none;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 2px solid #00ff88;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: legendPulse 2s ease-in-out infinite;
}

.legend-dot.active {
    background: #ff0066;
    box-shadow: 0 0 10px #ff0066;
}

.legend-dot.monitoring {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

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

/* News Section */
.news-section {
    grid-area: news;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 3px solid #00ff88;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: 800px;
    overflow-y: auto;
}

.news-section h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-section h3:hover {
    color: #00d4ff;
    text-shadow: 0 0 15px #00d4ff;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid #00ff88;
}

.news-item:hover {
    transform: translateY(-2px);
    border-color: #00ff88;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.news-item a {
    text-decoration: none;
    color: inherit;
}

.news-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #00ff88;
}

.news-item:hover .news-image {
    border-color: #00ff88;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Courier New', monospace;
}

.news-source {
    font-size: 0.8rem;
    color: #00d4ff;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.news-time {
    font-size: 0.7rem;
    color: #ffaa00;
    font-family: 'Courier New', monospace;
}

.news-timezone {
    font-size: 0.6rem;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    opacity: 0.8;
    margin-top: 2px;
}

.news-counter {
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 10px;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-counter i {
    margin-right: 8px;
    color: #00d4ff;
}

.loading {
    text-align: center;
    color: #00ff88;
    font-style: italic;
    padding: 40px 20px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading i {
    margin-right: 10px;
    color: #00ff88;
}

/* Notification Section */
.notification-section {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 3px solid #00ff88;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.notification-section h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-section p {
    color: #00ff88;
    margin-bottom: 25px;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #00ff88;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    padding: 15px;
    border: 2px solid #00ff88;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.form-group input::placeholder {
    color: rgba(0, 255, 136, 0.5);
    font-family: 'Courier New', monospace;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #00ff88;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00ff88;
    border-color: #00ff88;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 12px;
}

.notify-btn {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    border: 2px solid #00ff88;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.notification-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    text-align: center;
    font-weight: 600;
}

.notification-status.success {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.notification-status.error {
    background: rgba(255, 0, 102, 0.2);
    color: #ff0066;
    border: 1px solid #ff0066;
}

.notification-status.loading {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

/* Footer */
.footer {
    grid-area: footer;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #00ff88;
}

.footer p {
    color: #00ff88;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff88;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #00ff88;
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.social-link i {
    font-size: 1.1rem;
    color: #00d4ff;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(0, 255, 136, 0.6);
    font-family: 'Courier New', monospace;
}

/* Info Section */
.info-section {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 3px solid #00ff88;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

.info-section h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-card {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%);
    animation: infoScan 8s linear infinite;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

@keyframes infoScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-icon i {
    font-size: 24px;
    color: #1a1a1a;
}

.info-card h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: #00ff88;
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
}

.info-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.info-card li {
    color: #00ff88;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.info-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.8rem;
}

/* Token Card Specific Styles */
.token-card {
    grid-column: span 2;
    background: rgba(0, 255, 136, 0.1);
}

.token-info {
    position: relative;
    z-index: 1;
}

.contract-address {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contract-address strong {
    color: #00ff88;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contract-address code {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 8px 12px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    border: 1px solid #00ff88;
    flex: 1;
    min-width: 200px;
}

.copy-btn {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #1a1a1a;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.access-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tier {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.tier:hover {
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.tier-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-icon i {
    font-size: 20px;
    color: #1a1a1a;
}

.tier-content h5 {
    color: #00ff88;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tier-content p {
    color: #00ff88;
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.badge.immediate {
    background: #00ff88;
    color: #1a1a1a;
}

.badge.delayed {
    background: #ffaa00;
    color: #1a1a1a;
}

.token-benefits {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 20px;
}

.token-benefits h5 {
    color: #00ff88;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.token-benefits ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.token-benefits li {
    color: #00ff88;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr 400px;
    }
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header"
            "main"
            "news"
            "footer";
    }
    
    .news-section {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        gap: 20px;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .main-question {
        font-size: 2.5rem;
    }
    
    .status-light {
        width: 80px;
        height: 80px;
    }
    
    .status-text {
        font-size: 2.5rem;
    }
    
    .world-map {
        height: 300px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .token-card {
        grid-column: span 1;
    }
    
    .access-tiers {
        grid-template-columns: 1fr;
    }
    
    .token-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .contract-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contract-address code {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .main-question {
        font-size: 2rem;
    }
    
    .status-section {
        padding: 40px 15px;
    }
    
    .map-section,
    .notification-section {
        padding: 20px;
    }
}

.radar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar-circle-1 {
    width: 200px;
    height: 200px;
    animation: radarPulse 3s ease-in-out infinite;
}

.radar-circle-2 {
    width: 400px;
    height: 400px;
    animation: radarPulse 3s ease-in-out infinite 1s;
}

.radar-circle-3 {
    width: 600px;
    height: 600px;
    animation: radarPulse 3s ease-in-out infinite 2s;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 255, 136, 0.8), transparent);
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%);
    animation: radarSweep 4s linear infinite;
}

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px #00ff88;
    animation: radarCenterPulse 2s ease-in-out infinite;
}

.radar-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.threat-meter {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
}

.threat-bar {
    height: 20px;
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px currentColor;
}

.threat-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.threat-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    color: #00ff88;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.detail-value {
    color: #fff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 0.9rem;
}

.detail-value.intensity-critical {
    color: #ff0066;
    text-shadow: 0 0 10px #ff0066;
}

.detail-value.intensity-high {
    color: #ff6b6b;
    text-shadow: 0 0 10px #ff6b6b;
}

.detail-value.intensity-medium {
    color: #ffaa00;
    text-shadow: 0 0 10px #ffaa00;
}

.detail-value.intensity-low {
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
}

.detail-value.casualties {
    color: #ff0066;
    text-shadow: 0 0 10px #ff0066;
}

.detail-value.duration {
    color: #ffaa00;
    text-shadow: 0 0 10px #ffaa00;
}

.detail-value.parties {
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff;
}

.description-section,
.coordinates-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.description-section h4,
.coordinates-section h4 {
    color: #00ff88;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.description-section p,
.coordinates-section p {
    color: #fff;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
}

.radar-popup .threat-info {
    background: rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 3px solid #00ff88;
}

@keyframes radarSweep {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes radarCenterPulse {
    0%, 100% { 
        box-shadow: 0 0 20px #00ff88;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 40px #00ff88;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: rgba(0, 255, 136, 0.9);
    color: #1a1a1a;
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 10000;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
}

.copy-notification i {
    color: #1a1a1a;
} 