/* Color Variables & Theming */
:root {
    --bg-color: #0b0c10;
    --text-primary: #f0f0f5;
    --text-secondary: #a8aab5;
    --accent-color: #9d4edd;
    --accent-glow: rgba(157, 78, 221, 0.6);
    --accent-secondary: #ff9e00;
    --glass-bg: rgba(20, 22, 35, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

/* Animated Background Orbs */
.background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(157, 78, 221, 0.25);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 158, 0, 0.15);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(60, 9, 108, 0.3);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Stars Animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.2;
    animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.1;
        box-shadow: 0 0 0 #fff;
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 5px #fff;
    }
}

/* Container */
.container {
    max-width: 850px;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Banner Section */
.banner-container {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    background: #1a1b26;
    /* fallback color */
    display: flex;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.8s ease;
}

.banner-container:hover .banner-image {
    transform: scale(1.05);
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    padding: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px var(--accent-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Main Content (Glassmorphism) */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Typography */
h1.glow-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #e0b0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-section {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about-section p {
    margin-bottom: 1.2rem;
}

.about-section strong {
    color: var(--text-primary);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #ffd166;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #ffd166;
    border-radius: 50%;
    box-shadow: 0 0 12px #ffd166;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        opacity: 0.6;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Social Links */
.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
    transform: translateY(-2px);
}

.social-btn.github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.3rem;
}

/* Footer */
footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 1rem 0;
    letter-spacing: 1px;
}

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

    h1.glow-text {
        font-size: 2.5rem;
    }

    .social-links {
        flex-direction: column;
    }

    .banner-container {
        height: auto;
    }
}