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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-button {
    background-color: #2b2b2b;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-button:hover {
    background-color: #1a1a1a;
}

.main-content {
    display: flex;
    justify-content: center;
    padding: 0 48px 48px 48px;
}

.hero {
    width: 100%;
    max-width: 1600px;
    height: calc(100vh - 120px);
    min-height: 600px;
    border-radius: 32px;
    background-color: #3b9ac6; /* fallback color */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-title {
    color: #ffffff;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .header {
        padding: 20px 24px;
    }
    
    .main-content {
        padding: 0 24px 24px 24px;
    }
    
    .hero {
        border-radius: 20px;
        height: 60vh;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }
}
