:root {
    /* Premium Dark Theme */
    --bg-main: #09090b; /* Zinc 950 */
    --bg-card: #18181b; /* Zinc 900 */
    --bg-card-hover: #27272a; /* Zinc 800 */
    --text-primary: #fafafa; /* Zinc 50 */
    --text-secondary: #a1a1aa; /* Zinc 400 */
    --border-color: #27272a;
    
    /* Accents */
    --accent-yellow: #facc15;
    --accent-yellow-dim: rgba(250, 204, 21, 0.15);
    --accent-blue: #60a5fa;
    --accent-blue-dim: rgba(59, 130, 246, 0.15);
    --accent-red: #f87171;
    --accent-indigo: #818cf8;
    --accent-green: #34d399;
    --accent-cyan: #22d3ee;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-image: 
        radial-gradient(at 0% 0%, rgba(250, 204, 21, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.03) 0px, transparent 50%);
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    width: 100%;
    padding: 4rem 2rem;
}


/* --- Page Header --- */
.page-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 2rem 0 2.5rem;
}

.page-title,
.page-subtitle {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--text-primary);
}

.accent {
    color: #ff8c00;
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3));
}

.divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin-bottom: 3rem;
}


/* --- Projects Section --- */
.projects-section {
    width: 100%;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-4px);
    background-color: var(--bg-card-hover);
    border-color: #3f3f46;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card.featured {
    background-color: rgba(255,255,255,0.02);
    border-color: #3f3f46;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.project-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-logo {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    object-fit: contain;
}

.project-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.project-title h2 {
    font-size: 1.15rem;
    font-weight: 700;
}

.revenue-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 0.02em;
}

.revenue-tag::before {
    content: '\f155';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    background-color: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    z-index: 2;
    padding-right: 1rem;
}

/* Utility Classes */
.bg-dark { background-color: #000; }
.text-white { color: #fff; }

.text-blue { color: var(--accent-blue); background-color: var(--accent-blue-dim); }
.text-yellow { color: var(--accent-yellow); }
.text-red { color: var(--accent-red); }
.text-indigo { color: var(--accent-indigo); }
.text-green { color: var(--accent-green); }
.text-cyan { color: var(--accent-cyan); }

/* --- Footer --- */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.site-footer p {
    color: #52525b;
    font-size: 0.8rem;
}

/* --- Floating Discord Button --- */
.discord-float {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    z-index: 100;
}

.discord-float:hover {
    background-color: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border-color: #5865F2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.discord-float i {
    font-size: 1.5rem;
}
