
:root {
    --primary-color: #ff0055;
    --secondary-color: #00f3ff;
    --accent-yellow: #fcee0a;
    --bg-dark: #121212;
    --text-main: #e0e0e0;
    --font-glitch: 'Press Start 2P', cursive;
    --font-body: 'Exo 2', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, #2a2a40 0%, #000 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { transform: translateY(0); }
    to { transform: translateY(50px); }
}

.main-header {
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 2;
}

.glitch-title {
    font-family: var(--font-glitch);
    font-size: 4rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
}

.glitch-title::before, .glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.glitch-title::before {
    color: var(--primary-color);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-title::after {
    color: var(--secondary-color);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes glitch-anim-1 {
    0% { transform: translate(0,0); }
    20% { transform: translate(-5px, 3px); }
    40% { transform: translate(5px, -3px); }
    60% { transform: translate(-3px, 5px); }
    80% { transform: translate(3px, -5px); }
    100% { transform: translate(0,0); }
}

@keyframes glitch-anim-2 {
    0% { transform: translate(0,0); }
    20% { transform: translate(5px, -3px); }
    40% { transform: translate(-5px, 3px); }
    60% { transform: translate(3px, -5px); }
    80% { transform: translate(-3px, 5px); }
    100% { transform: translate(0,0); }
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.city-card {
    background: rgba(30, 30, 35, 0.7);
    border: 1px solid var(--secondary-color);
    margin-bottom: 80px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.card-header h2 {
    font-family: var(--font-glitch);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--primary-color);
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.city-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
    filter: contrast(1.2) brightness(0.8);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.history-box, .advice-box h3, .pros-cons h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-left: 5px solid var(--accent-yellow);
    padding-left: 10px;
}

.pPros, .cons {
    list-style: none;
    line-height: 1.8;
}

.plus-icon { color: #00ff6a; font-weight: bold; }
.minus-icon { color: var(--primary-color); font-weight: bold; }

.glitch-effect-2 { text-shadow: 2px 2px 0px rgba(255, 0, 85, 0.7); animation: pulseText 3s infinite;}
.glitch-effect-3 { color: #fff; } 


@keyframes pulseText {
    0% { text-shadow: 2px 2px 0px rgba(255, 0, 85, 0.7); }
    50% { text-shadow: -2px -2px 0px rgba(0, 243, 255, 0.7); }
    100% { text-shadow: 2px 2px 0px rgba(255, 0, 85, 0.7); }
}

.main-footer {
    background-color: #000;
    padding: 40px;
    text-align: center;
    color: var(--secondary-color);
    border-top: 2px solid var(--primary-color);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .glitch-title { font-size: 2rem; }
    .info-grid { grid-template-columns: 1fr; gap: 20px;}
    .city-img { height: 250px; }
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;   
    overflow: hidden;
}

.bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: ; 
    z-index: 1;
}

.main-header, .content-container {
    position: relative;
    z-index: 2;
}

.city-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
    filter: contrast(1.2) brightness(0.8);
    
    transform: none !important; 
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.cyber-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px var(--secondary-color);
}

.cyber-button:hover {
    background-color: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 20px var(--secondary-color), 0 0 40px var(--primary-color);
    transform: scale(1.05);
}

.deus-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.deus-button::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; width: 100%; height: 100%;
    border: 1px solid var(--secondary-color);
    opacity: 0;
    transition: 0.3s ease;
}

.deus-button:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px var(--secondary-color), inset 0 0 5px var(--secondary-color);
}

.deus-button:hover {
    background-color: var(--secondary-color);
    color: #000;
}

.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    z-index: 100;
}

.music-btn {
    width: 50px; 
    height: 50px; 
    background-color: rgba(20, 20, 30, 0.9);
    border: 1px solid var(--secondary-color);
    border-radius: 50%; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.music-btn:hover {
    background-color: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

.icon-music-btn {
    width: 30px; 
    height: 30px;  
    object-fit: contain;
}
