:root {
    --primary-color: #ff8c00; /* Deep orange accent */
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dynamic Background */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.05) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

.bg-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.3;
    z-index: -2;
}

/* Main Container */
.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
}

/* Header/Logo */
.header {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 20;
}

.logo {
    height: 120px;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4));
}

/* Content */
.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1.2s ease-out;
}

.contact-email {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    animation: fadeInUp 1.3s ease-out;
    letter-spacing: 1px;
}

.contact-email i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease-out;
}

.btn {
    padding: 12px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

/* Utility Icons (Bottom Left) */
.utility-icons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 1rem;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
}

/* Social Icons (Bottom Right) */
.social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3rem; letter-spacing: 4px; }
    .btn-group { flex-direction: column; gap: 1rem; }
    .social-icons { bottom: 20px; right: 20px; }
    .utility-icons { display: none; }
}
