:root {
    --bg-dark: #0B0B1A;
    --primary-neon: #D14BA3;
    --primary-neon-hover: #E0B0F5;
    --text-main: #FFFFFF;
    --text-accent: #FFF1BF;
    --glass-bg: rgba(20, 10, 30, 0.65);
    --glass-border: rgba(209, 75, 163, 0.4);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    /* Space background fallback, particles.js will handle the dynamic stars */
    background-image: radial-gradient(circle at top right, #1a0b2e, #0B0B1A 70%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Glassmorphism Container */
.glass-container {
    max-width: 800px;
    margin: 40px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 0 40px rgba(209, 75, 163, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
}

.neon-text {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-accent);
    text-shadow: 0 0 10px rgba(255, 241, 191, 0.5), 0 0 20px rgba(209, 75, 163, 0.8);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary-neon);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.description {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 500px;
    color: #e0e0e0;
}

.highlight {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-accent);
    text-shadow: 0 0 8px rgba(255, 241, 191, 0.4);
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.small {
    font-size: 1.2rem;
}

/* Profile Picture */
.profile-pic-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--primary-neon), #4b0082);
    box-shadow: 0 0 20px rgba(209, 75, 163, 0.5);
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
}

/* Buttons */
.cta-buttons, .commission-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-neon), #8A2BE2);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(209, 75, 163, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209, 75, 163, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: rgba(209, 75, 163, 0.1);
    border: 1px solid var(--primary-neon);
    color: white;
}

.btn-outline:hover {
    background: var(--primary-neon);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(209, 75, 163, 0.4);
}

.btn-boosty {
    background: #f15f2c;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
}

.btn-boosty:hover {
    background: #ff7443;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(241, 95, 44, 0.4);
}

/* Dividers */
.glow-divider {
    width: 80%;
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    margin: 50px 0;
    opacity: 0.5;
}

/* Commission Section */
.commissions {
    width: 100%;
}

.status {
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #21DB6B;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #21DB6B;
    animation: pulse 2s infinite;
}

.status-text {
    color: #21DB6B;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(33, 219, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(33, 219, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(33, 219, 107, 0); }
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    background: rgba(209, 75, 163, 0.1);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
    color: var(--primary-neon-hover);
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-accent);
    margin-bottom: 10px;
}

.price-card .details {
    font-size: 0.85rem;
    color: #bbb;
}

/* Support Section */
.support {
    width: 100%;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 600px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

.support-box {
    background: rgba(0,0,0,0.2);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.merch-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Portfolio Section */
.portfolio {
    width: 100%;
}

.portfolio-desc {
    margin-bottom: 25px;
    color: #aaa;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(209, 75, 163, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    width: 100%;
    margin-top: 20px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.contact p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

.email-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-neon-hover);
}

.email-link:hover {
    color: var(--text-accent);
    text-shadow: 0 0 10px var(--primary-neon);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(209, 75, 163, 0.4);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform:scale(0.95); opacity:0}
    to {transform:scale(1); opacity:1}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-neon);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-container {
        margin: 20px;
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .neon-text {
        font-size: 2.2rem;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
    }
}
