:root {
    --bg-darker: #050508;
    --bg-main: #0c0c14;
    --primary: #8533ff;
    --primary-glow: rgba(133, 51, 255, 0.4);
    --secondary: #0ea5e9;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 16px;
    --radius-md: 12px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

/* Gamma Background Mesh */
.mesh-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(133, 51, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); letter-spacing: -0.02em; }

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Floating Navbar */
.gamma-nav {
    position: fixed;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 64px;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: white; }

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--primary-glow);
    background: #944dff;
}

.btn-glass {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-glass:hover { background: rgba(255,255,255,0.08); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 150px;
}

.hero h1 { font-size: 80px; line-height: 1.1; margin-bottom: 24px; font-weight: 800; max-width: 900px; }
.hero p { font-size: 20px; color: var(--text-muted); max-width: 600px; margin-bottom: 40px; }

/* Deck Layouts (Gamma Style) */
.card-type-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(133, 51, 255, 0.1), transparent);
    border: 2px solid var(--primary-glow);
}

.card-type-hero h1 { font-size: 56px; margin-bottom: 20px; }

.card-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: 100%;
    align-items: center;
}

.split-media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    animation: revealImg 1s ease-out;
}

@keyframes revealImg {
    from { opacity: 0; transform: scale(0.9); filter: blur(10px); }
    to { opacity: 1; transform: scale(1); filter: blur(0); }
}

.card-grid-layout .grid-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.grid-item {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: 0.3s;
}

.grid-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.grid-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.grid-item h3 { font-size: 18px; margin-bottom: 10px; }
.grid-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.card-skeleton {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 1px;
}
