/* ===== WUWA Color Palette ===== */
/*
Obsidian: #0F1115 - Backgrounds / Primary Surfaces
Echo Grey: #2D323B - Secondary Panels / Borders
Resonance Gold: #FFD700 - Accents / Call-to-Action
Frequency White: #E6E9EF - Primary Text
Tacet Bronze: #B8860B - Subtle Details
*/

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0F1115, #1a1a1e, #0F1115);
    color: #E6E9EF;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ===== Header ===== */
.site-header {
    background: linear-gradient(135deg, #0F1115 0%, #2D323B 100%);
    padding: 15px 0;
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.site-header .container {
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #B8860B, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 3px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tagline {
    color: #9ca3af;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.header-tacet-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: auto;
    opacity: 0.8;
    z-index: 1;
}

.logo {
    position: relative;
    z-index: 2;
}

/* ===== Navigation ===== */
.main-nav {
    background: rgba(45, 50, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
}

.nav-link {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    border-bottom-color: #B8860B;
}

.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-bottom-color: #FFD700;
}

/* ===== Ad Space ===== */
.ad-space {
    background: rgba(45, 50, 59, 0.4);
    padding: 10px 20px;
    margin: 10px 16%;
    overflow: visible;
    pointer-events: auto;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
}

.ad-space.ad-empty {
    height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
}

.ad-space .container {
    overflow: visible;
    max-height: 75px;
    min-height: 60px;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E6E9EF;
    font-size: 0.9rem;
    text-align: center;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    width: 100%;
}

.adsbygoogle {
    overflow: visible;
    pointer-events: auto;
    max-height: 60px;
    min-height: 40px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.ad-placeholder {
    background: linear-gradient(135deg, rgba(45, 50, 59, 0.6), rgba(15, 17, 21, 0.6));
    border: 2px dashed rgba(184, 134, 11, 0.3);
    padding: 60px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* ===== Main Content ===== */
.main-content {
    padding: 30px 0;
    min-height: calc(100vh - 400px);
}

/* ===== Typography ===== */
h1, h2, h3 {
    margin: 25px 0 15px;
    color: #FFD700;
    font-weight: 600;
}

h1 {
    font-size: 2.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin: 15px 0;
    color: #E6E9EF;
}

/* ===== Forms ===== */
form {
    max-width: 600px;
    margin: 30px 0;
    background: rgba(45, 50, 59, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

label {
    display: block;
    margin: 15px 0 8px;
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.95rem;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: rgba(15, 17, 21, 0.6);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 6px;
    color: #E6E9EF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(15, 17, 21, 0.8);
}

/* ===== Buttons ===== */
button {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #0F1115;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

button:hover {
    background: linear-gradient(135deg, #ffed4e, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

button:active {
    transform: translateY(0);
}

/* ===== Footer ===== */
footer {
    margin-top: 80px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #0F1115 0%, #2D323B 100%);
    border-top: 3px solid #FFD700;
    text-align: center;
    color: #9ca3af;
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.1);
}

footer p {
    margin: 10px 0;
    color: #9ca3af;
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        padding: 15px 15px;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    form {
        padding: 20px;
    }
}
