:root {
    --bg-dark: #000000;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent-pink: #ff9ebd;
    --accent-pink-hover: #ff85a2;
    
    --surface-light: #0d0d0d;
    --surface-border: #222222;
    --nav-bg: #0d0d0d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(var(--surface-border) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    height: 70px;
    background: var(--nav-bg);
    border: 2px solid var(--surface-border);
    border-radius: 8px;
    box-shadow: 4px 4px 0px var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid var(--surface-border);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .name {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.brand-text .subtext {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
    background: var(--accent-pink);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tag {
    padding: 0.5rem 1.25rem;
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    color: #fff;
}

.btn-primary {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 4px 4px 0px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover {
    background: var(--accent-pink-hover);
    border-color: var(--accent-pink-hover);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px rgba(244, 63, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--surface-border);
}

.btn-secondary:hover {
    background: var(--surface-light);
    border-color: var(--text-main);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--text-main);
}

/* Hero Profile Picture (Right Side) */
.hero-graphics {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-pfp {
    width: 320px;
    height: 320px;
    border-radius: 8px;
    object-fit: cover;
    border: 4px solid var(--surface-border);
    box-shadow: -8px 8px 0px var(--accent-pink);
    transition: all 0.2s ease;
}

.hero-pfp:hover {
    transform: translate(-4px, 4px);
    box-shadow: -4px 4px 0px var(--accent-pink);
    border-color: var(--accent-pink);
}


/* Common Section Styles */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--surface-light);
    border: 2px solid var(--surface-border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: var(--accent-pink);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px var(--accent-pink);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent-pink);
    color: #fff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.status-badge.inactive {
    background: var(--surface-border);
    color: var(--text-main);
}

.status-badge.learning {
    background: #3b82f6;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.portfolio-item {
    width: 220px;
    aspect-ratio: 9 / 16;
    background: var(--surface-light);
    border: 2px solid var(--surface-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 1.5rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

.portfolio-item .placeholder-text {
    z-index: 0;
}

.portfolio-item:hover {
    border-color: var(--accent-pink);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px var(--accent-pink);
    color: var(--accent-pink);
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--surface-light);
    border: 2px solid var(--surface-border);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: var(--accent-pink);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px var(--accent-pink);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.discord-buy-btn {
    margin-top: 1.5rem;
    display: inline-block;
}

/* Socials Section */
.socials-section {
    padding-bottom: 8rem;
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 1rem 2.5rem;
    background: var(--surface-light);
    border: 2px solid var(--surface-border);
    border-radius: 4px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: #fff;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px rgba(244, 63, 94, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tags, .buttons {
        justify-content: center;
    }
    .hero-graphics {
        width: 100%;
        height: 400px;
    }
    .navbar {
        width: 95%;
        padding: 0 1rem;
    }
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}
