@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #2a8bf2;
    --primary-hover: #1e40af;
    --secondary: #60a5fa;
    --background: #000a1a;
    --card-bg: rgba(0, 15, 35, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow: rgba(42, 139, 242, 0.3);
}

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

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

/* Background Animation */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(5px);
    animation: zoomOut 20s infinite alternate ease-in-out;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--background) 100%);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 0.8s ease-out;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(42, 139, 242, 0.4));
    transition: transform 0.3s ease;
}

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


/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Ticket Section */
.ticket-wrapper {
    margin-top: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px var(--glow);
    animation: fadeInUp 1s ease-out 0.2s both;
    overflow: visible; /* Changed from hidden to avoid clipping expanded iframe */
    position: relative;
}

/* Ensure ClickUp iframe fits well */
.iframe-container {
    width: 100%;
    height: auto;
    min-height: 800px;
    border-radius: 16px;
    overflow: visible; 
    background: rgba(255, 255, 255, 0.02); /* Placeholder background */
}

.iframe-container iframe {
    border: none !important;
    width: 100%;
    display: block;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--glow);
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-sublink {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-sublink:hover {
    color: var(--primary);
}

.footer-line {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .iframe-container { 
        height: auto;
        min-height: 600px;
    }
}
