:root {
    --bg-color: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-color: #d4af37; /* Gold accent */
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Moving background glow for luxury feel */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0a0a0c 100%);
    z-index: -1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s forwards;
}

.logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgb(255, 255, 255));
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 50px;
}

.subtitle {
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.project-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 20px;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0; /* Handled by JS animation */
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.folder-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.project-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Card Hover Shine Effect */
.project-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: 0.6s;
}

.project-card:hover::after {
    transform: translateX(100%);
}

footer {
    margin-top: 80px;
    color: var(--text-dim);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}