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

:root {
    --bg-primary: #050d1a;
    --bg-secondary: #0a1628;
    --bg-card: rgba(15, 30, 60, 0.6);
    --bg-glass: rgba(15, 30, 60, 0.4);
    --border-glass: rgba(100, 170, 255, 0.1);
    --border-glow: rgba(100, 170, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-gold: #f0c419;
    --accent-gold-hover: #ffd84d;
    --accent-blue: #3b82f6;
    --accent-blue-glow: rgba(59, 130, 246, 0.3);
    --gradient-blue: linear-gradient(135deg, #0a1628 0%, #0f2035 30%, #162d50 60%, #0a1628 100%);
    --gradient-gold: linear-gradient(135deg, #f0c419, #e5a80d);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

body {
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding-top: 80px;
}

.main-container {
    min-height: 55vh;
}

.swal2-icon {
    width: 100%;
    height: 100%;
    margin: 10px 0;
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 1100px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    h1 {
        font-size: 1.6rem;
    }
}

/* Smooth fade-in for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 170, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 170, 255, 0.4);
}
