:root {
    /* Brand Colors */
    --bg-color: #1a0a09; /* Deep brown from logo */
    --primary-color: #fa7b12;
    --secondary-color: #c24400;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Animation */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(250, 123, 18, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 20% 30%, rgba(194, 68, 0, 0.05) 0%, transparent 30%);
    z-index: -1;
    animation: bgMovement 20s ease-in-out infinite alternate;
}

@keyframes bgMovement {
    from { transform: translate(0, 0); }
    to { transform: translate(10%, 10%); }
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    z-index: 1;
}

.logo-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(250, 123, 18, 0.3));
}

.content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(250, 123, 18, 0.4);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    background: linear-gradient(to bottom, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(250, 123, 18, 0.3);
    transform: translateY(-2px);
}

.footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    .logo { max-width: 240px; }
}
