/* ========================================
   Eeek's Vault - Machine Rythm LLC
   Static Site Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Vault Theme - Dark Mode */
    --background: hsl(0, 0%, 5%);
    --foreground: hsl(0, 0%, 98%);
    
    --card: hsl(0, 0%, 8%);
    --card-foreground: hsl(0, 0%, 98%);
    
    /* Gold - Primary vault treasure color */
    --primary: hsl(45, 100%, 51%);
    --primary-foreground: hsl(0, 0%, 5%);
    --primary-glow: hsl(45, 100%, 60%);
    
    /* Neon Green - Accent for highlights */
    --secondary: hsl(120, 100%, 50%);
    --secondary-foreground: hsl(0, 0%, 5%);
    
    /* Dark surface for cards */
    --muted: hsl(0, 0%, 12%);
    --muted-foreground: hsl(0, 0%, 70%);
    
    /* Neon Green accent */
    --accent: hsl(120, 100%, 50%);
    --accent-foreground: hsl(0, 0%, 5%);
    
    /* Borders and inputs */
    --border: hsl(0, 0%, 20%);
    --input: hsl(0, 0%, 15%);
    --ring: hsl(45, 100%, 51%);
    
    --radius: 0.75rem;
    
    /* Shadows */
    --shadow-gold: 0 10px 40px hsla(45, 100%, 51%, 0.3);
    --shadow-glow: 0 0 60px hsla(45, 100%, 51%, 0.4);
    --shadow-card: 0 4px 20px hsla(0, 0%, 0%, 0.5);
    
    /* Animation timing */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, var(--background) 0%, hsl(0, 0%, 8%) 100%);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Teko', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition-smooth);
    background: transparent;
}

.nav.scrolled {
    background: hsla(0, 0%, 5%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 640px) {
    .nav-content {
        height: 5rem;
    }
}

.logo {
    font-size: 1.5rem;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition-smooth);
}

@media (min-width: 640px) {
    .logo {
        font-size: 1.875rem;
    }
}

.logo:hover {
    color: var(--primary-glow);
    text-shadow: 0 0 20px hsla(45, 100%, 60%, 0.5);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 1rem;
    }
}

.nav-link:hover {
    background: var(--muted);
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid hsla(0, 0%, 20%, 0.3);
    animation: fadeIn 0.3s ease-out;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 1rem;
    color: var(--foreground);
    transition: var(--transition-smooth);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.mobile-link:hover {
    background: var(--muted);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        hsla(0, 0%, 5%, 0.6) 0%, 
        hsla(0, 0%, 5%, 0.8) 50%, 
        var(--background) 100%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 3s ease-in-out infinite;
}

.glow-orb-1 {
    top: 25%;
    left: 25%;
    background: hsla(45, 100%, 51%, 0.2);
}

.glow-orb-2 {
    bottom: 25%;
    right: 25%;
    background: hsla(120, 100%, 50%, 0.1);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: hsla(0, 0%, 12%, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid hsla(45, 100%, 51%, 0.3);
    border-radius: 9999px;
}

.hero-tag span {
    color: var(--primary);
    font-size: 0.875rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--primary-glow);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-highlight {
    color: var(--primary);
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Teko', sans-serif;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-description {
    font-size: 1rem;
    color: hsla(0, 0%, 70%, 0.9);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 10;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-vault {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(35, 100%, 45%) 100%);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-gold);
}

.btn-vault:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    height: 3.5rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

@media (min-width: 640px) {
    .section {
        padding: 8rem 0;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 5.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    font-family: 'Teko', sans-serif;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1.5rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.6s ease-out;
}

.section-note {
    font-size: 0.875rem;
    color: hsla(0, 0%, 70%, 0.9);
    max-width: 36rem;
    margin: 1.5rem auto 0;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.about-story {
    animation: fadeIn 0.6s ease-out;
}

.about-text {
    margin-top: 1.5rem;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.75;
}

.about-text p {
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--primary);
    font-weight: 600;
}

.text-accent {
    color: var(--accent);
    font-weight: 600;
    font-style: italic;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.5rem;
    border: 1px solid hsla(0, 0%, 20%, 0.5);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: hsla(45, 100%, 51%, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: hsla(45, 100%, 51%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: hsla(45, 100%, 51%, 0.2);
}

.feature-icon svg {
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Live Vault Section */
.section-live-vault {
    position: relative;
}

.section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: hsla(120, 100%, 50%, 0.05);
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
}

.live-vault-video {
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--muted);
    border: 2px solid hsla(45, 100%, 51%, 0.3);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.video-placeholder:hover {
    border-color: var(--primary);
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.play-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: hsla(45, 100%, 51%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    animation: glowPulse 2s ease-in-out infinite;
}

.video-placeholder:hover .play-icon {
    background: hsla(45, 100%, 51%, 0.3);
}

.play-icon svg {
    color: var(--primary);
}

.video-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.video-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.video-corner {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-color: hsla(45, 100%, 51%, 0.5);
}

.corner-tl {
    top: 0;
    left: 0;
    border-top: 4px solid;
    border-left: 4px solid;
    border-top-left-radius: 1rem;
}

.corner-tr {
    top: 0;
    right: 0;
    border-top: 4px solid;
    border-right: 4px solid;
    border-top-right-radius: 1rem;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-bottom: 4px solid;
    border-left: 4px solid;
    border-bottom-left-radius: 1rem;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-bottom: 4px solid;
    border-right: 4px solid;
    border-bottom-right-radius: 1rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.vault-feature {
    padding: 2rem;
    background: var(--card);
    border-radius: 0.75rem;
    border: 2px solid hsla(0, 0%, 20%, 0.5);
    text-align: center;
    transition: var(--transition-smooth);
}

.vault-feature:hover {
    border-color: hsla(45, 100%, 51%, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.vault-feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: hsla(45, 100%, 51%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.vault-feature:hover .vault-feature-icon {
    background: hsla(45, 100%, 51%, 0.2);
    transform: scale(1.1);
}

.vault-feature-icon svg {
    color: var(--primary);
}

.vault-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.vault-feature-description {
    color: var(--muted-foreground);
    line-height: 1.75;
}

/* Join Crew Section */
.section-join-crew {
    position: relative;
}

.section-glow-join {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: hsla(45, 100%, 51%, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
}

.join-crew-content {
    max-width: 42rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.crew-form {
    animation: fadeIn 0.6s ease-out;
}

.form-card {
    padding: 2.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 2px solid hsla(0, 0%, 20%, 0.5);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .form-card {
        padding: 2.5rem;
    }
}

.form-card:hover {
    border-color: hsla(45, 100%, 51%, 0.5);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-family: 'Teko', sans-serif;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-foreground);
    pointer-events: none;
}

.textarea-icon {
    top: 1rem;
    transform: none;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    height: 3.5rem;
    background: var(--muted);
    border: 1px solid hsla(0, 0%, 20%, 0.5);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(45, 100%, 51%, 0.1);
}

.form-input::placeholder {
    color: hsla(0, 0%, 70%, 0.5);
}

.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--muted);
    border: 1px solid hsla(0, 0%, 20%, 0.5);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    resize: none;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(45, 100%, 51%, 0.1);
}

.form-textarea::placeholder {
    color: hsla(0, 0%, 70%, 0.5);
}

.form-privacy {
    font-size: 0.75rem;
    text-align: center;
    color: hsla(0, 0%, 70%, 0.7);
    padding: 0 1rem;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    padding: 1.5rem;
    background: hsla(0, 0%, 12%, 0.5);
    border-radius: 0.75rem;
    border: 1px solid hsla(0, 0%, 20%, 0.3);
}

.stat-number {
    font-size: 1.875rem;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Partners Section */
.section-partners {
    background: hsla(0, 0%, 12%, 0.3);
}

.partners-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.partners-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: hsla(45, 100%, 51%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-icon svg {
    color: var(--primary);
}

.partners-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .partners-description {
        font-size: 1.25rem;
    }
}

.partners-note {
    font-size: 1rem;
    color: hsla(0, 0%, 70%, 0.9);
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    border: 1px solid hsla(0, 0%, 20%, 0.5);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: hsla(45, 100%, 51%, 0.5);
    transform: translateY(-4px);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: hsla(0, 0%, 12%, 0.5);
    border-top: 1px solid hsla(0, 0%, 20%, 0.5);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-nav {
        justify-content: flex-start;
    }
}

.footer-link {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

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

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: hsla(45, 100%, 51%, 0.2);
    color: var(--primary);
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 20%, 0.3);
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: hsla(0, 0%, 70%, 0.7);
    margin-bottom: 0.25rem;
}

.footer-company {
    font-size: 0.75rem;
    color: hsla(0, 0%, 70%, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: hsla(0, 0%, 5%, 0.9);
    backdrop-filter: blur(8px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--card);
    border: 2px solid hsla(45, 100%, 51%, 0.3);
    border-radius: 1rem;
    box-shadow: var(--shadow-gold);
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid hsla(0, 0%, 20%, 0.5);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.modal-close {
    color: var(--muted-foreground);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-form {
    padding: 1.5rem;
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px hsla(45, 100%, 51%, 0.3);
    }
    50% {
        box-shadow: 0 0 40px hsla(45, 100%, 51%, 0.6);
    }
}

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

/* Utility Classes */
.text-glow {
    text-shadow: 0 0 20px var(--primary-glow);
}

