:root {
    --bg-dark: #0f0a1d;
    --neon-blue: #00f3ff;
    --neon-pink: #ff007f;
    --neon-purple: #8a2be2;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(20, 15, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background Effects */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: -2;
    animation: twinkle 5s infinite;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { opacity: 0.2; }
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.glow-purple {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
}

.glow-blue {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
}

.glow-pink {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    opacity: 0.3;
}

/* Dynamic Island */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    position: fixed;
    top: 0;
    z-index: 100;
}

.dynamic-island {
    background: #000;
    border-radius: 40px;
    height: 40px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 
                inset 0 0 10px rgba(138, 43, 226, 0.3);
    cursor: pointer;
}

.dynamic-island.expanded {
    width: 350px;
    height: 120px;
    border-radius: 25px;
}

.island-content {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.island-collapsed {
    opacity: 1;
}

.dynamic-island.expanded .island-collapsed {
    opacity: 0;
    pointer-events: none;
}

.island-expanded {
    opacity: 0;
    pointer-events: none;
    padding: 15px 20px;
}

.dynamic-island.expanded .island-expanded {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.2s;
}

.island-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-profile img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--neon-purple);
}

.user-profile h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 3px;
}

.discord-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--status-color, var(--neon-blue));
    border-radius: 50%;
    box-shadow: 0 0 5px var(--status-color, var(--neon-blue));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--status-color, var(--neon-blue)); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px transparent; }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 transparent; }
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--neon-pink);
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 150px;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ddd;
}
