:root {
    --ny-blue: #101820;
    --ny-gold: #F2A900;
    --ny-silver: #C0C0C0;
    --white: #FFFFFF;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    background-color: var(--ny-blue);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&display=swap');

h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    color: var(--ny-gold);
    text-shadow: 0 0 10px rgba(242, 169, 0, 0.5);
}

.section-title {
    font-size: 3rem;
    color: var(--ny-silver);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ny-gold);
    margin: 10px auto 0;
}

/* Components */
.glam-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.glam-card::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.7;
}

.btn-ny {
    background: linear-gradient(45deg, var(--ny-gold), #b8860b);
    color: var(--ny-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(242, 169, 0, 0.4);
}

.btn-ny:hover {
    background: linear-gradient(45deg, #b8860b, var(--ny-gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(242, 169, 0, 0.6);
    text-decoration: none;
}

/* Hero */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a2634 0%, #000000 100%);
}

#fireworksCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    border: 2px solid rgba(242, 169, 0, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.hero-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ny-gold);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(242, 169, 0, 0.3);
}

/* Countdown */
.ny-countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.ny-time-box {
    text-align: center;
}

.ny-time-box span {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    display: block;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ny-time-box small {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--ny-gold);
    letter-spacing: 2px;
}

/* Audio */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-ny {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--ny-gold);
    border-radius: 50%;
    color: var(--ny-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(242, 169, 0, 0.2);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.btn-music-ny:hover {
    background: var(--ny-gold);
    color: var(--ny-blue);
    box-shadow: 0 0 30px rgba(242, 169, 0, 0.5);
}

/* Footer */
footer {
    background: #000;
    color: var(--ny-silver);
    padding: 4rem 0;
    border-top: 1px solid var(--ny-gold);
}