:root {
    --bg-dark: #0a0a0a;
    --primary-orange: #FF5E00;
    --primary-red: #D81B1B;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --card-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: pulse 8s infinite alternate;
}

.glow.red {
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--primary-red);
}

.glow.orange {
    bottom: -20%;
    left: -20%;
    width: 70vw;
    height: 70vw;
    background: var(--primary-orange);
    animation-delay: 2s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0.25; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

.logo {
    width: 220px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.4);
}

/* Actions */
.actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 400px;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: white;
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 94, 0, 0.5);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.agency-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.agency-credit a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.agency-credit a:hover {
    color: var(--text-light);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: block;
    opacity: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lightbox-scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 60px; /* space for close button */
    gap: 30px;
    min-height: 100%;
}

.lightbox-menu-img {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #f1f1f1;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
    background: rgba(40,40,40,0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.close-btn:hover {
    color: var(--primary-orange);
    background: rgba(20,20,20,0.9);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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