:root {
    --primary-color: #ff9d00;
    --secondary-color: #ff4e00;
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0b0b0b;
    color: var(--text-color);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.7);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.8) 0%, rgba(11, 11, 11, 0.2) 100%);
    z-index: -1;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.8);
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 90%;
}

.content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-area h1 {
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.glow-text {
    text-shadow: 0 0 20px rgba(255, 157, 0, 0.4);
}

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto;
    border-radius: 2px;
}

.main-info h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Animations */
.animate-pop {
    animation: popIn 0.8s 0.3s backwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-fade {
    animation: fadeIn 1s 0.6s backwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Construction Icon Animation */
.construction-icon {
    margin: 2rem auto;
    position: relative;
    height: 80px;
}

.gear-spinner {
    font-size: 3rem;
    animation: rotate 4s linear infinite;
    display: inline-block;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.icon-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.icon-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255, 157, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .logo-area h1 {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }
    .main-info h2 {
        font-size: 1.5rem;
    }
    .content {
        padding: 2rem 1.5rem;
    }
}
