/* ===== CSS Variables ===== */
:root {
    --primary: #FB62E7;
    --primary-glow: rgba(251, 98, 231, 0.4);
    --secondary: #FFBDF6;
    --secondary-glow: rgba(255, 189, 246, 0.3);
    --accent: #FB62E7;
    --dark-bg: #0d0d0d;
    --card-bg: rgba(13, 13, 13, 0.9);
    --card-border: rgba(251, 98, 231, 0.25);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Background Effects ===== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(251, 98, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 98, 231, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.glow-1 {
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    animation: float 20s ease-in-out infinite;
}

.glow-2 {
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary-glow);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ===== Layout ===== */
header, main, footer {
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

main {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== Logo ===== */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px var(--primary-glow));
}

/* ===== Typography ===== */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto 25px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon {
    font-size: 1.2rem;
}

/* ===== Badge ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 98, 231, 0.15);
    border: 1px solid var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ===== Cards/Sections ===== */
section {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    border-color: rgba(251, 98, 231, 0.4);
    box-shadow: 0 0 30px rgba(251, 98, 231, 0.1);
}

section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

section p + p {
    margin-top: 15px;
}

/* ===== Current Project ===== */
.current-project {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(255, 189, 246, 0.08), rgba(251, 98, 231, 0.05));
}

.current-project:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 30px rgba(255, 189, 246, 0.15);
}

.current-project h2 {
    color: var(--secondary);
}

.project-card {
    margin-top: 15px;
}

.project-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background: rgba(255, 189, 246, 0.1);
    border: 1px solid rgba(255, 189, 246, 0.3);
    color: var(--secondary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn.discord {
    background: rgba(88, 101, 242, 0.15);
    color: #5865f2;
    border-color: rgba(88, 101, 242, 0.3);
}
.social-btn.discord:hover {
    background: rgba(88, 101, 242, 0.25);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.social-btn.bluesky {
    background: rgba(0, 133, 255, 0.15);
    color: #0085ff;
    border-color: rgba(0, 133, 255, 0.3);
}
.social-btn.bluesky:hover {
    background: rgba(0, 133, 255, 0.25);
    box-shadow: 0 0 20px rgba(0, 133, 255, 0.3);
}

.social-btn.twitter {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}
.social-btn.twitter:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.social-btn.instagram {
    background: linear-gradient(135deg, rgba(253, 29, 29, 0.15), rgba(131, 58, 180, 0.15));
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}
.social-btn.instagram:hover {
    background: linear-gradient(135deg, rgba(253, 29, 29, 0.25), rgba(131, 58, 180, 0.25));
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

/* ===== Contact ===== */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 98, 231, 0.4);
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.made-with {
    margin-top: 8px;
    font-size: 0.85rem !important;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    header {
        padding: 40px 20px 30px;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    section {
        padding: 25px 20px;
    }
    
    .social-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .social-btn span {
        display: none;
    }
    
    .social-btn svg {
        width: 22px;
        height: 22px;
    }
}
