:root {
    --slate-gray: #708090;
    --modern-silver: #c0c0c0;
    --navy-accent: #2c3e50;
    --pure-white: #ffffff;
    --bg-light-gray: #f8f9fa;
    --font-heading: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-light-gray);
    color: var(--navy-accent);
    font-family: var(--font-heading);
    font-weight: 300;
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@1,400&display=swap');

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

h1.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--navy-accent);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h1.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--navy-accent);
    margin: 15px auto 0;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--slate-gray);
}

/* Components */
.modern-card {
    background: var(--pure-white);
    padding: 3rem 2rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.icon-minimal {
    font-size: 2rem;
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
    border: 1px solid var(--slate-gray);
    padding: 15px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Hero Animation - God Ray / Cross */
.cross-container {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.minimal-cross {
    width: 4px;
    height: 120px;
    background: var(--navy-accent);
    position: relative;
    z-index: 2;
}

.minimal-cross::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--navy-accent);
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
}

.god-ray {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200px;
    height: 500px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: top center;
    animation: lightSweep 6s infinite ease-in-out;
    filter: blur(20px);
    opacity: 0.6;
    z-index: 1;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-150%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(150%) rotate(-45deg);
        opacity: 0;
    }
}

/* Buttons */
.btn-modern {
    background: transparent;
    color: var(--navy-accent);
    border: 1px solid var(--navy-accent);
    padding: 12px 40px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-modern:hover {
    background: var(--navy-accent);
    color: white;
    text-decoration: none;
}

/* Countdown */
.modern-countdown {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    border: 1px solid #ddd;
    display: inline-flex;
}

.count-block {
    padding: 1rem 1.5rem;
    border-right: 1px solid #ddd;
    text-align: center;
}

.count-block:last-child {
    border-right: none;
}

.count-block span {
    font-size: 2rem;
    font-weight: 300;
    display: block;
    line-height: 1;
}

.count-block small {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-top: 5px;
    display: block;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

.btn-music-modern {
    width: 40px;
    height: 40px;
    background: var(--navy-accent);
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-music-modern:hover {
    background: var(--slate-gray);
}