:root {
    --bg-main: #050505;
    --bg-panel: #111;
    --accent: #00ff9d;
    --accent-soft: #00c97a;
    --text-main: #e0e0e0;
    --text-muted: #999;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at top, #101010 0, #000 60%);
    color: var(--text-main);
}

/* Header */

header {
    background: #000;
    color: var(--accent);
    padding: 15px 10px 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent-soft);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    width: 240px; /* Bigger logo */
    margin-bottom: 20px;

    /* Strong neon glow */
    filter: drop-shadow(0 0 25px rgba(0, 255, 157, 1))
            drop-shadow(0 0 45px rgba(0, 255, 157, 0.8))
            drop-shadow(0 0 70px rgba(0, 255, 157, 0.6));

    /* Smooth pulsing animation */
    animation: logoPulse 3s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.7))
                drop-shadow(0 0 40px rgba(0, 255, 157, 0.5));
    }
    to {
        filter: drop-shadow(0 0 45px rgba(0, 255, 157, 1))
                drop-shadow(0 0 80px rgba(0, 255, 157, 0.9));
    }
}


@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(0, 255, 157, 0.4)); }
    to   { filter: drop-shadow(0 0 18px rgba(0, 255, 157, 1)); }
}

header h1 {
    margin: 5px 0 10px;
    letter-spacing: 1px;
}

/* Navigation */

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--accent-soft);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
}

nav a:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 12px rgba(0, 255, 157, 0.8);
    transform: translateY(-1px);
}

/* Hero */

.hero {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #050505, #101010);
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.7);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: var(--accent);
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.9);
    transition: transform 0.1s, box-shadow 0.1s;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(0, 255, 157, 1);
}

/* Content panels */

.content {
    padding: 30px 20px;
    max-width: 900px;
    margin: 30px auto;
    background: var(--bg-panel);
    border: 1px solid var(--accent-soft);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

.content h2, .content h3 {
    color: var(--accent);
}

/* Services list */

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.service-list li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    background: #181818;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-soft);
}

/* Ticket form */

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.ticket-form label {
    font-size: 0.9rem;
    color: var(--accent);
}

.ticket-form input,
.ticket-form textarea {
    background: #050505;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px;
    color: var(--text-main);
}

.ticket-form input:focus,
.ticket-form textarea:focus {
    outline: none;
    border-color: var(--accent-soft);
    box-shadow: 0 0 8px rgba(0, 255, 157, 0.5);
}

.ticket-form button {
    margin-top: 5px;
    padding: 10px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 255, 157, 0.8);
    transition: transform 0.1s, box-shadow 0.1s;
}

.ticket-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(0, 255, 157, 1);
}

.ticket-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */

footer {
    text-align: center;
    padding: 15px;
    background: #000;
    color: var(--accent);
    border-top: 2px solid var(--accent-soft);
    margin-top: 30px;
}

/* Responsive */

@media (max-width: 768px) {
    header {
        padding: 10px 5px 15px;
    }

    .logo {
        width: 70px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .content {
        margin: 20px 10px;
        padding: 20px 15px;
    }

    nav {
        gap: 6px;
    }

    nav a {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
.success {
    background: #003f1f;
    border: 1px solid #00ff9d;
    padding: 10px;
    border-radius: 6px;
    color: #00ff9d;
    margin-bottom: 15px;
}

}
