/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    min-height: 100vh;
    color: #fff;
    cursor: none;
    overflow-x: hidden;
}

/* CUSTOM CURSOR */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #ff5c5c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease;
}

/* PARTICLES */
#particles-js {
    position: fixed;
    inset: 0;
    z-index: 1;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 100;
    padding: 12px 20px;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.header-buttons button {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    margin: 0 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.header-buttons button:hover {
    opacity: 0.85;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #111;
    margin: 12% auto;
    padding: 22px;
    border-radius: 12px;
    width: 90%;
    max-width: 520px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.close {
    float: right;
    font-size: 26px;
    cursor: pointer;
}

/* CONTAINER */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 120px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

/* LOGO */
.logo {
    width: 220px;
    animation: float 4s ease-in-out infinite;
}

.glow {
    filter: drop-shadow(0 0 24px rgba(255,255,255,0.4));
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 22px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
    transform: scale(1.2);
}

/* FORM */
.contact-form {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* CUSTOM SELECT */
.custom-select {
    width: 100%;
}

.select-btn {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

.options {
    display: none;
    flex-direction: column;
    max-height: 200px;
    overflow-y: auto;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-top: 4px;
}

.option {
    padding: 8px 12px;
    cursor: pointer;
}

.option:hover {
    background: rgba(255,255,255,0.15);
}

.selected-count {
    font-size: 0.9rem;
}

/* BUTTONS */
.contact-form button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}

/* MUSIC BUTTON */
.music-btn {
    margin: 18px auto 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.music-btn:hover {
    transform: scale(1.1);
    background: #ff1e1e;
    color: #fff;
}

/* FOOTER */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.8);
    text-align: center;
    font-size: 0.95rem;
}

/* ANIMATIONS */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    body {
        cursor: auto;
        overflow-y: auto;
    }

    .custom-cursor {
        display: none;
    }

    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons button {
        width: 100%;
    }

    .container {
        padding-top: 100px;
    }

    .logo {
        width: 170px;
    }

    .social-icons a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .contact-form {
        max-width: 100%;
    }

    .modal-content {
        margin-top: 30%;
    }
}

@media (min-width: 1400px) {
    .logo {
        width: 260px;
    }
}
