:root {
    --bg-color: #0c0b0b;
    --text-primary: #e6e6e6;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-glow: rgba(212, 175, 55, 0.4);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background-image: radial-gradient(circle at 50% 0%, #1a1510 0%, #0c0b0b 70%);
}

.container {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.8), rgba(10, 10, 10, 0.9));
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent in container */
.container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--gold-primary);
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
}

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

.logo {
    max-width: 180px;
    height: auto;
    animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.info {
    margin-bottom: 2.5rem;
}

.info h1 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.subtitle {
    color: var(--gold-light);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    text-decoration: none;
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.link-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.link-item i {
    width: 35px;
    font-size: 1.4rem;
    color: var(--gold-primary);
    display: flex;
    justify-content: center;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: transform 0.3s;
}

.link-item:hover {
    background-color: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
}

.link-item:hover::after {
    transform: translateX(100%);
}

.link-item:hover i {
    transform: scale(1.1);
}

.footer-text {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-top: auto;
    letter-spacing: 0.5px;
}

.footer-text .highlight {
    font-family: 'Great Vibes', cursive;
    color: var(--gold-primary);
    font-size: 2.5rem;
    display: block;
    margin-top: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    .container {
        padding: 2.5rem 1.5rem;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .info h1 {
        font-size: 1.5rem;
    }
    
    .link-item {
        font-size: 1rem;
        padding: 1rem;
    }
}
