* {
    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;
    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;
}

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

/* 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%;
}

.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-primary: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;
    margin-bottom: 2vh;
}

/* Responsive design */
@media (max-width: 1200px) {
    h1 { font-size: 6vw; }
    .tagline { font-size: 2.2vw; }
}

@media (max-width: 768px) {
    .slide {
        padding: 2vh 3vw;
    }
    
    h1 { font-size: 8vw; }
    .tagline { font-size: 3vw; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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