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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section with Fullscreen Video */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* Top Header Bar */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: -1;
}

/* Logo and Branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    margin-bottom: auto;
    position: relative;
    z-index: 20;
}

.city-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    transition: filter 0.3s ease;
}

.city-logo:hover {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
}

.city-branding {
    display: flex;
    flex-direction: column;
}

.city-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.city-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Hero Navigation */
.hero-navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
    margin-bottom: 60px;
    padding: 0 40px;
    position: relative;
    z-index: 20;
}

@keyframes vibrate-attention {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    50% { transform: translateX(-1px); }
    60% { transform: translateX(1px); }
    70% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
    90% { transform: translateX(0); }
}

.citizenship-link {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(165, 42, 42, 0.9));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    text-align: center;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: vibrate-attention 2s ease-in-out infinite;
}

.citizenship-link:hover {
    background: linear-gradient(135deg, rgba(165, 42, 42, 0.9), rgba(220, 20, 60, 0.9));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
    animation: none;
}

.citizenship-link i {
    margin-right: 8px;
    font-size: 1.1em;
}



.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.9), rgba(30, 30, 30, 0.9));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    text-align: center;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(70, 70, 70, 0.9), rgba(50, 50, 50, 0.9));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.social-link i {
    font-size: 1.3rem;
}

.token-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.token-display {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.token-ca-label {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.token-ca-short {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.copy-ca-btn {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-ca-btn:hover {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    animation: float 2s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.arrow-down {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(5px); }
}

/* Citizen Stats Banner Section */
.citizen-stats-section {
    background: linear-gradient(135deg, #8b0000 0%, #a52a2a 50%, #dc143c 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.citizen-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.stats-banner {
    position: relative;
    z-index: 1;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.citizen-count {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.count-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.count-label {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.urgency-message {
    color: #fff;
}

.urgency-message h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: urgentPulse 2s ease-in-out infinite;
}

.urgency-message p {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.warning-text {
    color: #ffff00 !important;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Chart Section */
.chart-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    position: relative;
}

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

.chart-header {
    text-align: center;
    margin-bottom: 40px;
}

.chart-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.chart-description {
    font-size: 1.2rem;
    color: #d0d0d0;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.chart-token-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chart-contract-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contract-label {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contract-address {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 350px;
}

.copy-button {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.copy-button:hover {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.chart-wrapper {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-height: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chart-wrapper iframe {
    border-radius: 12px;
}

.loading-message {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    padding: 60px 20px;
    font-style: italic;
    font-family: 'Orbitron', monospace;
}

.no-videos {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    padding: 60px 20px;
    font-style: italic;
    font-family: 'Orbitron', monospace;
}

/* Footer */
.footer {
    background: rgba(12, 12, 12, 0.9);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    align-items: center;
}

.social-link-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.8), rgba(30, 30, 30, 0.8));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.social-link-footer:hover {
    background: linear-gradient(135deg, rgba(70, 70, 70, 0.9), rgba(50, 50, 50, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-link-footer i {
    font-size: 1.1rem;
}

.warning {
    color: #ff6b6b !important;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .city-title {
        font-size: 3.8rem;
    }
    
    .city-logo {
        width: 100px;
        height: 100px;
    }
    
    .chart-header h2 {
        font-size: 2.4rem;
    }
    
    .urgency-message h2 {
        font-size: 2.4rem;
    }
    
    .count-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content::before {
        height: 160px;
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .city-logo {
        width: 80px;
        height: 80px;
    }
    
    .city-title {
        font-size: 2.8rem;
    }
    
    .city-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-navigation {
        padding: 0 20px;
    }
    
    .citizenship-link {
        padding: 16px 28px;
        font-size: 1.1rem;
    }
    
    .social-link {
        padding: 14px 26px;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .chart-header h2 {
        font-size: 2rem;
    }
    
    .chart-description {
        font-size: 1rem;
    }
    
    .urgency-message h2 {
        font-size: 2rem;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .count-number {
        font-size: 3rem;
    }
    
    .urgency-message p {
        font-size: 1.1rem;
    }
    
    .chart-wrapper {
        min-height: 600px;
        padding: 15px;
    }
    
    .chart-wrapper iframe {
        height: 580px !important;
    }
    
    .chart-contract-display {
        flex-direction: column;
        gap: 10px;
    }
    
    .contract-address {
        font-size: 0.85rem;
        text-align: center;
        max-width: 280px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: -5px;
        pointer-events: auto;
    }
    
    .scroll-arrow span {
        font-size: 0.8rem;
    }
    
    .arrow-down {
        font-size: 1.3rem;
        margin-top: -20px;
    }
    
    .city-logo {
        width: 60px;
        height: 60px;
    }
    
    .city-title {
        font-size: 2.2rem;
    }
    
    .city-subtitle {
        font-size: 1rem;
    }
    
    .hero-navigation {
        margin-bottom: 60px;
    }
    
    .citizenship-link {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .token-info {
        max-width: 100%;
        padding: 12px 18px;
    }
    
    .token-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .token-ca-short {
        font-size: 0.85rem;
        padding: 3px 6px;
    }
    
    .copy-ca-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    .count-number {
        font-size: 2.5rem;
    }
    
    .count-label {
        font-size: 1rem;
    }
    
    .urgency-message h2 {
        font-size: 1.8rem;
    }
    
    .urgency-message p {
        font-size: 1rem;
    }
    
    .citizen-count {
        padding: 30px 20px;
    }
    
    .chart-wrapper {
        min-height: 500px;
        padding: 10px;
    }
    
    .chart-wrapper iframe {
        height: 480px !important;
    }
    
    .chart-token-info {
        margin-top: 20px;
        padding: 15px;
    }
    
    .contract-address {
        font-size: 0.8rem;
        padding: 6px 8px;
        max-width: 240px;
    }
    
    .copy-button {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

/* Animation for new citizens */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.loading-message {
    animation: pulse 2s ease-in-out infinite;
}

/* Sound Toggle Button */
.sound-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 30;
    font-family: 'Orbitron', monospace;
    overflow: hidden;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sound-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.sound-toggle:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.sound-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.sound-text {
    font-size: 18px;
    line-height: 1;
}

.sound-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ccc;
    transition: color 0.3s ease;
}

.sound-toggle:hover .sound-label {
    color: #fff;
}

.sound-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sound-toggle.unmuted .sound-waves {
    opacity: 1;
}

.wave {
    width: 2px;
    background: #fff;
    border-radius: 1px;
    animation: soundWave 1.2s ease-in-out infinite;
}

.wave-1 {
    height: 8px;
    animation-delay: 0s;
}

.wave-2 {
    height: 12px;
    animation-delay: 0.2s;
}

.wave-3 {
    height: 8px;
    animation-delay: 0.4s;
}

@keyframes soundWave {
    0%, 100% {
        transform: scaleY(0.3);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.sound-toggle.unmuted {
    background: rgba(22, 33, 62, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.sound-toggle.unmuted:hover {
    background: rgba(22, 33, 62, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Sound toggle responsiveness */
@media (max-width: 768px) {
    .sound-toggle {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        min-width: 100px;
    }
    
    .sound-text {
        font-size: 16px;
    }
    
    .sound-label {
        font-size: 10px;
    }
}

/* Citizens Section */
.citizens-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.citizens-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.citizens-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.citizens-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.citizens-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.citizens-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.citizen-item {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.citizen-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006400, #228b22, #32cd32);
    opacity: 0.7;
}

.citizen-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.citizen-item.new {
    animation: slideInFromTop 0.6s ease-out;
    border-color: rgba(50, 205, 50, 0.5);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
}

.citizen-info {
    margin-bottom: 15px;
}

.citizen-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.citizen-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.citizen-id {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.citizen-badge {
    background: linear-gradient(135deg, #006400, #228b22);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px rgba(0, 100, 0, 0.3);
}

.no-citizens {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-citizens small {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-citizens .citizenship-link {
    color: #32cd32;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.no-citizens .citizenship-link:hover {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Random Trollface Animation */
.random-trollface {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: trollfaceFloat 2s ease-in-out;
}

@keyframes trollfaceFloat {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7)) saturate(1.2) brightness(1.1);
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
}

/* Mobile responsiveness for citizens */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: -5px;
        pointer-events: auto;
    }
    
    .scroll-arrow span {
        font-size: 0.9rem;
    }
    
    .arrow-down {
        font-size: 1.5rem;
        margin-top: -20px;
    }
    
    .citizens-header h2 {
        font-size: 2.2rem;
    }
    
    .citizens-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .citizens-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .citizen-item {
        padding: 20px;
    }
    
    .citizen-name {
        font-size: 1.2rem;
    }
} 