:root {
    --bg-dark: #342852;
    --bg-light: #534079;
    --text-main: #eff5fd;
    --text-muted: #b4abd0;
    --accent: #7f7b94;
    --white: #ffffff;
    --black: #000000;
    --glass: rgba(83, 64, 121, 0.3);
    /* --border: rgba(239, 245, 253, 0.1); */
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.globe-1 {
    width: 600px;
    height: 600px;
    background: var(--bg-light);
    top: -100px;
    left: -100px;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: #4a3670;
    bottom: -100px;
    right: -100px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
}

/* Typography */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.title-mascot {
    display: none;
}

.highlight {
    background: linear-gradient(135deg, #fff 0%, #b4abd0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}



/* Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Video Section */
.hero-visual {
    position: relative;
    width: 100%;
}

.video-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.page-mascot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 270px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    z-index: 100;
    transform: rotate(-10deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.page-mascot:hover {
    transform: rotate(0deg) scale(1.1) translateY(-10px);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.video-glow {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(83, 64, 121, 0.2);
    pointer-events: none;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .description {
        margin: 0 auto 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }
    
    .video-wrapper {
        transform: none;
    }
    
    .video-wrapper:hover {
        transform: none;
    }
    
    .mascot-image {
        max-height: 160px;
    }
}
