:root {
    --gold: #D4AF37;
    --emerald: #064E3B;
    --navy: #0F172A;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--navy);
    color: var(--white);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('hero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: var(--navy);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    animation: fadeInDown 1.2s ease-out;
}

.logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    opacity: 0.8;
}

nav ul li a:hover {
    color: var(--gold);
    opacity: 1;
}

.main-content {
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.5s ease-out;
}

.floating-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.glass-core {
    background: rgba(0, 0, 0, 0.4); /* Darker for better contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 80px 100px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.main-title {
    font-weight: 100;
    letter-spacing: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 30px;
    opacity: 0.5;
}

.attribute-constellation {
    display: flex;
    gap: 60px;
    margin-bottom: -20px;
}

.attr-item {
    font-size: 0.6rem;
    letter-spacing: 4px;
    opacity: 0.4;
    position: relative;
    animation: float var(--delay) ease-in-out infinite alternate;
    animation-duration: 4s;
}

.attr-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
}

.status-text {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.cta-button {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    padding: 18px 50px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(-45deg); }
    20% { transform: translateX(100%) rotate(-45deg); }
    100% { transform: translateX(100%) rotate(-45deg); }
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
    animation: fadeInUp 1.2s ease-out;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    opacity: 0.5;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Animations */
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-content {
    background: var(--navy);
    border: 1px solid var(--glass-border);
    padding: 60px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    color: var(--white);
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--gold);
}

.submit-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.02);
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    nav ul {
        gap: 20px;
    }
    .glass-card {
        padding: 30px;
        margin: 0 20px;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .modal-content {
        padding: 40px 20px;
    }
}
