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

:root {
    --green: #b8ff00;
    --yellow: #ffd400;
    --orange: #ff7a00;
    --dark: #0d0d0d;
    --light: #ffffff;
    --text: #d8d8d8;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, #1a1a1a 0%, #0d0d0d 60%);
    color: var(--light);
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    text-align: center;
}

.logo {
    width: min(500px, 90%);
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 25px rgba(184, 255, 0, 0.25));
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--light);
}

.description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--light);
}

.opening {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--green);
}

.info {
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: var(--text);
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.contact a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact a:hover {
    color: var(--green);
}

.separator {
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .logo {
        margin-bottom: 30px;
    }

    .contact {
        flex-direction: column;
        gap: 12px;
    }

    .separator {
        display: none;
    }
}