:root {
    --gold: #FFC107;
    --green: #2ecc71;
    --discord: #5865F2;
    --glass: rgba(0, 0, 0, 0.8);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

h1, h3, .logo-area span, .back-link, .tile-text span, .submit-btn, .copy-btn, .modal-close-btn, .wip-header {
    font-family: 'Chewy', cursive !important;
}

body {
    background: url('https://i.postimg.cc/nVQMj4mK/BGHONEY.png') no-repeat center fixed;
    background-size: cover; color: white; min-height: 100vh;
    display: flex; flex-direction: column; overflow-x: hidden;
}

.background-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(10,10,10,0.95) 100%); z-index: -1;
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: var(--glass); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1); position: sticky; top: 0; z-index: 100;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 40px; filter: drop-shadow(0 0 5px var(--gold)); }
.glow-text { font-size: 1.6rem; color: var(--gold); text-shadow: 0 0 10px rgba(255,193,7,0.5); }
.back-link { color: white; text-decoration: none; transition: 0.3s; }
.back-link:hover { color: var(--gold); text-shadow: 0 0 10px var(--gold); }

/* --- PROFILE CARD --- */
.contact-container { flex: 1; display: flex; justify-content: center; align-items: center; padding: 40px 20px; perspective: 1000px; }
.profile-card {
    background: rgba(15, 15, 15, 0.7); width: 100%; max-width: 450px;
    padding: 30px; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px); text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.avatar-wrapper { position: relative; width: 90px; height: 90px; margin: 0 auto 15px; }
.dev-img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--gold); }
.status-dot {
    position: absolute; bottom: 5px; right: 5px; width: 15px; height: 15px;
    background: var(--green); border: 2px solid #111; border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0px rgba(46, 204, 113, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
}

.profile-header h1 { color: var(--gold); font-size: 2rem; margin-bottom: 5px; }
.tagline { opacity: 0.6; font-size: 0.8rem; margin-bottom: 20px; }

/* TILES */
.contact-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.contact-tile {
    display: flex; align-items: center; padding: 12px 15px;
    background: rgba(255,255,255,0.05); border-radius: 12px;
    text-decoration: none; color: white; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05);
}
.contact-tile:hover { background: rgba(255,193,7,0.1); border-color: var(--gold); }
.tile-icon { font-size: 1.2rem; margin-right: 12px; }
.discord-color { color: var(--discord); }
.email-color { color: var(--gold); }
.tile-text { text-align: left; flex: 1; }
.tile-text span { font-size: 1rem; display: block; }
.tile-text p { font-size: 0.7rem; opacity: 0.5; }

.copy-btn {
    background: rgba(255,193,7,0.15); border: 1px solid var(--gold);
    color: var(--gold); padding: 4px 10px; border-radius: 6px; cursor: pointer; font-size: 0.7rem;
}

/* FORM */
.form-section { text-align: left; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }
.form-section h3 { color: var(--gold); margin-bottom: 10px; text-align: center; }
input, textarea {
    width: 100%; padding: 10px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: white; margin-bottom: 10px; outline: none; font-size: 0.85rem;
}
.submit-btn {
    width: 100%; padding: 10px; background: var(--gold); border: none; border-radius: 8px;
    color: black; font-size: 1rem; cursor: pointer; transition: 0.3s;
}

/* WIP BAR */
.wip-container {
    margin-top: 20px; padding: 12px; background: rgba(255, 193, 7, 0.05);
    border-radius: 12px; border: 1px dashed rgba(255, 193, 7, 0.3);
}
.wip-header { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 6px; }
.progress-bar-bg { width: 100%; height: 10px; background: #000; border-radius: 10px; overflow: hidden; }
.progress-fill {
    width: 75%; height: 100%; background: linear-gradient(45deg, var(--gold) 25%, #f39c12 25%, #f39c12 50%, var(--gold) 50%, var(--gold) 75%, #f39c12 75%);
    background-size: 20px 20px; animation: stripes 2s linear infinite;
}
@keyframes stripes { from { background-position: 0 0; } to { background-position: 20px 0; } }
.wip-status { font-size: 0.65rem; opacity: 0.4; margin-top: 5px; }

/* MODAL */
.success-modal {
    display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); justify-content: center; align-items: center;
}
.modal-box { background: #111; padding: 30px; border-radius: 20px; border: 2px solid var(--gold); text-align: center; max-width: 350px; width: 90%; }
.check-circle { width: 50px; height: 50px; background: var(--green); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 10px; }
.modal-close-btn { background: var(--gold); border: none; padding: 8px 20px; border-radius: 8px; cursor: pointer; margin-top: 15px; }

@media (max-width: 600px) { nav { padding: 10px 5%; } .profile-card { padding: 20px 15px; } }