:root {
    --primary-color: #ffd700; /* Refined Gold */
    --secondary-color: #ffffff;
    --bg-dark: #050403;
    --text-light: #fdfbf7;
    --card-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.15);
    --blur: blur(24px);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

/* Full-Page 3D Background */
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: #000;
}

/* Sections */
.hero, .aarti-section, .wishes-section {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 4, 3, 0.2), rgba(5, 4, 3, 0.9));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.glow-text {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Countdown */
.countdown-container {
    background: var(--card-bg);
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    display: inline-block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.countdown-container h2 {
    margin-bottom: 25px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.time-box span {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.time-box p {
    margin-top: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Aarti Section */
.aarti-section {
    padding: 120px 0;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-desc {
    color: #bbb;
    margin-bottom: 60px;
    font-size: 1.1rem;
    font-weight: 300;
}

.aarti-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.action-btn {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 18px 40px;
    border-radius: 40px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.4s ease;
    backdrop-filter: var(--blur);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Wishes Section */
.wishes-section {
    padding: 80px 0 140px;
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.wish-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: left;
    backdrop-filter: var(--blur);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.wish-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.5);
    border-color: rgba(255,255,255,0.3);
}

.wish-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.8;
    color: #eaeaea;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s;
    align-self: flex-start;
}

.copy-btn:hover {
    background: #fff;
    color: #000;
}

/* Footer */
.dev-footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dev-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 300;
}

.dev-info strong {
    font-weight: 600;
}

.org {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.contact-links a:hover {
    color: #fff;
}

.yt-link {
    color: #fff !important;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

.yt-link:hover {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.copyright {
    color: #555;
    font-size: 0.9rem;
    width: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .glow-text {
        font-size: 3rem;
    }
    .countdown {
        gap: 15px;
    }
    .time-box span {
        font-size: 2rem;
    }
}
