:root {
    --primary: #d4af37;
    /* Luxury Gold */
    --secondary: #1a0b2e;
    /* Deep Purple/Black */
    --accent: #ff0055;
    /* Neon Pink/Red */
    --text: #ffffff;
    --glass: rgba(0, 0, 0, 0.4);
    /* Darker glass for better contrast */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #000;
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    position: relative;
}

/* Background Image */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png'), linear-gradient(135deg, #1a0b2e 0%, #000 100%);
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomIn 30s infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.content-wrapper {
    text-align: center;
    z-index: 10;
    padding: 3rem;
    backdrop-filter: blur(5px);
    background: var(--glass);
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle gold border */
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    width: 90%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Styling */
.logo {
    max-width: 100%;
    width: 300px;
    /* Adjust based on logo shape */
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.subtitle {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.social-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 15px var(--primary);
}

.loader {
    margin-top: 2rem;
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: var(--primary);
    animation: load 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes load {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }
}