:root {
    --bg-color: #24263a;
    --text-color: #ffffff;
    --button-bg: #e61b33;
    --button-hover: #ff2741;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Low opacity background */
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Background Animations */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45,49,89,1) 0%, rgba(36,38,58,0) 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,27,51,0.15) 0%, rgba(36,38,58,0) 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Content Styling */
.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    max-width: 800px;
    z-index: 2;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.logo-container {
    margin-bottom: 0.5rem;
}

.logo {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.fallback-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.registered {
    font-size: 1rem;
    margin-left: 0.2rem;
    margin-top: 0.5rem;
}

.main-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.action-container {
    margin-top: 1rem;
}

.contact-button {
    display: inline-block;
    background-color: var(--button-bg);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(230, 27, 51, 0.3);
}

.contact-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 27, 51, 0.5);
}

/* Entry Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-text { font-size: 2.5rem; }
    .main-title { font-size: 1.5rem; }
    .logo { max-width: 280px; }
}
