:root {
    --brand-blue: #4A7DFF;
    --brand-red: #FF3D3D;
    --pink-neon: #FFB6C1;
    --dark-bg: #030305;
}

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

body {
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.95)), 
                      url('https://images.unsplash.com/photo-1514525253344-991c70cdc9d9?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
}

.main-content {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 800px;
    padding: 40px 0;
}

/* --- LOGO TASARIMLARI --- */

.top-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(74, 125, 255, 0.3));
}

.event-logo-container {
    margin-bottom: 25px; /* Butonla arasındaki mesafe */
}

.event-bottom-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--pink-neon));
}

/* --- İÇERİK --- */

h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

h1 span {
    color: var(--pink-neon);
    text-shadow: 0 0 20px rgba(255, 182, 193, 0.6);
}

.event-meta {
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: #ccc;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Sayaç */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px; /* Logo ile arasındaki mesafe */
}

.time-unit {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 182, 193, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
}

.time-unit:hover {
    border-color: var(--pink-neon);
    background: rgba(255, 182, 193, 0.05);
}

.time-unit span {
    font-size: 2rem;
    font-weight: 600;
}

.time-unit small {
    font-size: 0.6rem;
    color: var(--brand-blue);
    letter-spacing: 2px;
}

/* Buton */
.btn-ticket {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    border: 1px solid var(--brand-red);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: 0.5s;
}

.btn-ticket:hover {
    background: var(--brand-red);
    color: #000;
    box-shadow: 0 0 40px rgba(255, 61, 61, 0.4);
}

/* Sosyal ve Footer */
.social-links { margin-top: 50px; display: flex; justify-content: center; gap: 20px; }
.social-links a { color: #888; text-decoration: none; font-size: 0.75rem; letter-spacing: 2px; }
.site-footer { padding: 30px; font-size: 0.6rem; color: #555; letter-spacing: 3px; }

/* MOBİL UYUMLULUK */
@media (max-width: 650px) {
    h1 { font-size: 1.8rem; letter-spacing: 5px; }
    .top-logo { max-width: 160px; }
    .event-bottom-logo { max-width: 140px; }
    .countdown-wrapper { gap: 10px; }
    .time-unit { width: 70px; height: 70px; }
    .time-unit span { font-size: 1.3rem; }
    .btn-ticket { padding: 15px 30px; font-size: 0.8rem; }
}