/* Style Reset & Base Config */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #234975;
    --primary-rgb: 35, 73, 117;
    --secondary: #91a4ba;
    --secondary-rgb: 145, 164, 186;
    --accent: #2563eb;
    --bg-dark: #070e17;
    --text-light: #ffffff;
    --text-muted: #8e9fae;
    --glass-bg: rgba(35, 73, 117, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    background: radial-gradient(circle at center, #122842 0%, #070e17 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Animated Mesh */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    transition: transform 0.5s ease-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(35, 73, 117, 0.8) 0%, rgba(0,0,0,0) 70%);
    animation: float-1 25s infinite alternate ease-in-out;
}

.orb-2 {
    bottom: -15%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(145, 164, 186, 0.6) 0%, rgba(0,0,0,0) 70%);
    animation: float-2 30s infinite alternate ease-in-out;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(0,0,0,0) 70%);
    animation: float-3 20s infinite alternate ease-in-out;
}

@keyframes float-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 15%) scale(1.1); }
}

@keyframes float-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8%, -12%) scale(1.05); }
}

@keyframes float-3 {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    100% { transform: translate(-45%, -55%) scale(1.15) rotate(180deg); }
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Logo */
.header {
    margin-top: auto;
    margin-bottom: 30px;
}

.logo-wrapper {
    display: inline-block;
    padding: 10px;
    position: relative;
}

.main-logo {
    width: 340px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.main-logo:hover {
    transform: scale(1.03);
}

/* Main Content Typography */
.main-content {
    width: 100%;
    margin-bottom: auto;
}

.intro-section {
    margin-bottom: 24px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.domain-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.domain-link:hover {
    color: #ffffff;
    border-bottom-color: var(--secondary);
}

/* Footer Section */
.footer {
    width: 100%;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(142, 159, 174, 0.5);
    font-weight: 300;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }
    
    .main-logo {
        width: 280px;
        border-radius: 26px 26px 15px 15px; /* Scales clipping to match smaller size */
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 240px;
        border-radius: 22px 22px 12px 12px; /* Scales clipping to match mobile size */
    }
    
    .main-title {
        font-size: 2.0rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
}
