/* Variables */
:root {
    /* Colors */
    --primary-color: #1e0a39;
    --background-color: #1E0A38;
    --text-color: #eee9ff;
    
    /* Glassmorphism */
    --glass-bg: rgba(30, 10, 56, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: 10px;
    
    /* Text variants */
    --text-primary: var(--text-color);
    --text-secondary: rgba(219, 210, 254, 0.8);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #11012f 0%, #10012d 100%);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(159, 77, 183, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(126, 100, 162, 0.4) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Landing Container */
.landing-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-xl);
}

.content-wrapper {
    max-width: 1000px;
    width: 100%;
    /* background: var(--glass-bg); */
    /* backdrop-filter: blur(var(--glass-blur)); */
    -webkit-backdrop-filter: blur(var(--glass-blur));
    /* border: 1px solid var(--glass-border); */
    /* border-radius: 24px; */
    padding: var(--spacing-xl);
    text-align: center;
    /* box-shadow: var(--glass-shadow); */
    animation: fadeIn 1s ease-out;
}

/* Logo Styles */
.logo-container {
    margin-bottom: var(--spacing-sm);
}

a{
    /* text-decoration: none; */
    color: var(--text-color);
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Text Content */
.title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.title span {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease-out forwards;
}

.title span:nth-child(1) { animation-delay: 0.2s; }
.title span:nth-child(2) { animation-delay: 0.4s; }
.title span:nth-child(3) { animation-delay: 0.6s; }

.description {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

/* Button/Link Styles */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-top: var(--spacing-lg);
    font-size: var(--font-size-md);
    font-weight: 600;
    text-decoration: none;
    /* border-radius: 8px; */
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.btn.primary {
    background: var(--primary-gradient);
    color: var(--text-light);
    border: 1px solid #bca5fb;
    /* box-shadow: var(--glass-shadow); */
}

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

.btn.primary:active {
    transform: translateY(0);
}


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

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-xl: 2rem;
        --font-size-lg: 1.1rem;
    }

    .landing-container {
        padding: var(--spacing-md);
    }

    .content-wrapper {
        padding: var(--spacing-lg);
    }

    .logo {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-xl: 1.75rem;
        --font-size-lg: 1rem;
    }

    .content-wrapper {
        padding: var(--spacing-md);
    }

    .logo {
        width: 120px;
        height: 120px;
    }
} 