:root {
    --bg-color: #000000;
    --accent-color: #EBFF00; /* Bright Thick Yellow */
    --text-color: #FFFFFF;
    --secondary-text: #AAAAAA;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    cursor: none; /* We'll use a custom cursor */
}

/* Custom Cursor */
#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.yellow-text {
    color: var(--accent-color);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 40px;
}

#generative-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

#hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 20px;
}

#hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--secondary-text);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Portfolio Sections */
.portfolio-section {
    padding: 120px 40px;
    min-height: 100vh;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 60px;
    border-left: 10px solid var(--accent-color);
    padding-left: 30px;
}

/* Grids */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    height: 400px;
    background-color: #111;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.project-card.large {
    grid-column: span 2;
}

.project-card:hover {
    transform: translateY(-10px);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* Showreel */
.showreel-container {
    width: 100%;
    height: 60vh;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #222;
}

.placeholder-video {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
}

/* Contact */
#contact {
    padding: 160px 40px;
    text-align: center;
}

.contact-button {
    display: inline-block;
    margin-top: 40px;
    padding: 20px 60px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(235, 255, 0, 0.4);
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .project-card.large { grid-column: span 1; }
    .section-title { font-size: 2.5rem; }
}
