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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0b14;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Unified futuristic background */
.slide {
    width: 100vw;
    height: 100vh;
    padding: 3vh 4vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 118, 117, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(100, 200, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0b14 0%, #1a1b2e 50%, #16213e 100%);
    border-bottom: 1px solid rgba(120, 119, 198, 0.1);
    backdrop-filter: blur(20px);
    box-sizing: border-box;
    overflow: hidden;
}

/* Animated background particles */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(120, 119, 198, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 118, 117, 0.3), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(100, 200, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 80%, rgba(120, 119, 198, 0.2), transparent);
    background-size: 100px 100px, 80px 80px, 120px 120px, 60px 60px;
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(-10px) rotate(240deg); }
}

/* Typography */
h1 {
    font-size: 5.5vw;
    font-weight: 800;
    margin-bottom: 1.5vh;
    line-height: 1.1;
    background: linear-gradient(135deg, #7877c6 0%, #ff7675 50%, #64c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

h1:first-of-type {
    font-size: 4.5vw;
    margin-bottom: 0.5vh;
}

h1:last-of-type {
    font-size: 6.5vw;
    margin-bottom: 1.5vh;
    background: linear-gradient(45deg, #7877c6, #ff7675, #7877c6);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h2 {
    font-size: 3.8vw;
    font-weight: 700;
    margin-bottom: 2vh;
    line-height: 1.2;
    background: linear-gradient(135deg, #7877c6 0%, #ff7675 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

h3 {
    font-size: 2.2vw;
    font-weight: 600;
    margin-bottom: 1.5vh;
    color: #64c8ff;
    text-align: center;
}

.tagline {
    font-size: 1.8vw;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2vh;
    text-align: center;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3vh;
    max-width: 80vw;
    margin-left: auto;
    margin-right: auto;
}

/* Website specific styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #7877c6 0%, #64c8ff 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: #64c8ff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #64c8ff;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(120, 119, 198, 0.3);
}

/* Logo container styling */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 16vw;
    max-height: 16vh;
    object-fit: contain;
    margin-top: 1vh;
}

/* Responsive design */
@media (max-width: 1200px) {
    h1 { font-size: 6vw; }
    h1:first-of-type { font-size: 5vw; }
    h1:last-of-type { font-size: 7vw; }
    h2 { font-size: 4.5vw; }
    h3 { font-size: 2.8vw; }
    .tagline { font-size: 2.2vw; }
    .subtitle { font-size: 1.6vw; }
}

@media (max-width: 768px) {
    .slide {
        padding: 2vh 3vw;
    }
    
    h1 { font-size: 8vw; }
    h1:first-of-type { font-size: 7vw; }
    h1:last-of-type { font-size: 9vw; }
    h2 { font-size: 6vw; }
    h3 { font-size: 4vw; }
    .tagline { font-size: 3vw; }
    .subtitle { font-size: 2.5vw; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 4rem 2rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide > * {
    animation: fadeInUp 0.6s ease-out;
} 