:root {
    --text-color: #ffffff;
    --glass-bg: rgba(15, 33, 72, 0.6); /* Deep Navy semi-transparent */
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Peacock Color Palette from logo */
    --navy: #0F2148;       /* Deep Navy */
    --peacock-blue: #005B8C; /* Peacock Blue */
    --peacock-teal: #008B74; /* Emerald Teal */
    --peacock-gold: #C49A45; /* Golden Bronze */
    --neon-gold: #e5b955;
    
    /* Adjusted dark background */
    --bg-dark: #0a1329;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow: hidden;
    position: relative;
    /* Add a subtle radial gradient to the body */
    background: radial-gradient(circle at center, var(--navy) 0%, var(--bg-dark) 100%);
}

/* 3D Background */
#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

/* Main Content Container */
.container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    animation: contentReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: translateY(40px);
    opacity: 0;
}

@keyframes contentReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    animation: pulse 4s infinite ease-in-out;
    border-radius: 10px; /* In case testing with placeholder */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 8px 20px rgba(0, 91, 140, 0.4)); }
}

/* Typography */
.title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, var(--peacock-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle strong {
    color: var(--neon-gold);
    font-weight: 600;
}



/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--peacock-blue);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 91, 140, 0.5);
    border-color: transparent;
}

/* Developer Credit */
.developer-credit {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(15, 33, 72, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.developer-credit:hover {
    background: rgba(15, 33, 72, 0.7);
    border-color: rgba(0, 139, 116, 0.4);
}

.credit-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.di3k-logo {
    height: 16px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.developer-credit:hover .di3k-logo {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 640px) {
    .glass-panel {
        padding: 2.5rem 1.5rem;
    }

    .title {
        font-size: 2.5rem;
    }
    

}
