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

:root {
    --accent-orange: #FF852E;
    --background: #ffffff;
    --foreground: #0a0a0a;
    --muted-foreground: #737373;
    --border: #e5e5e5;
}

::selection {
    background-color: #FF852E;
    color: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Silk/marble texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(235, 235, 240, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(240, 240, 245, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(232, 232, 238, 0.4) 0%, transparent 40%);
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.03em;
    color: var(--foreground);
}

.logo span {
    color: var(--accent-orange);
}

.tagline {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

main {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.8));
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #000;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08),
        0 0 1px rgba(0, 0, 0, 0.12);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    body {
        padding: 2rem 1.5rem;
    }
    
    .container {
        gap: 3rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }

    .video-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
}
