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

body {
    background-color: #11111f;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .nav-logo img {
    height: 35px !important;
    width: auto !important;
    max-width: none !important;
    transition: opacity 0.3s ease;
}

.navbar .nav-logo:hover img {
    opacity: 0.8;
}

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.logo-section { margin-bottom: 3rem; }

.logo { max-width: 600px; width: 100%; height: auto; margin-bottom: 1.5rem; }

.sto-link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.sto-image {
    display: block;
    mask-image: 
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image: 
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-composite: source-in;
    transition: opacity 0.3s ease;
}

.sto-link:hover .sto-image {
    opacity: 0.9;
}

.coming-soon {
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 200;
    color: #ffffff;
}

.business-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.business-link {
    color: inherit;
    text-decoration: none;
    font-weight: 200;
}

.business-link:hover { text-decoration: underline; }

.site-footer { margin-top: 4rem; }

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.footer-address {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 200;
    line-height: 1.5;
}

.footer-company-info {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 200;
    line-height: 1.5;
    margin-top: 0.5rem;
    text-align: center;
}

.footer-company-info a {
    color: #ffffff;
    text-decoration: none;
}

.footer-company-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo { max-width: 400px; }
    .business-links { flex-direction: column; gap: 1.5rem; }
}
