:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-acid-green: #ccff00;
    --color-hot-pink: #ff00cc;
    --color-electric-blue: #00ffff;
    --color-bright-orange: #ff6600;
    --font-display: 'Bungee Shade', cursive;
    --font-body: 'Noto Sans SC', sans-serif;
    --font-serif: 'Abril Fatface', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
}

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

.cursor.grow {
    transform: translate(-50%, -50%) scale(3);
    background: var(--color-white);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 0.8;
    transform: rotate(-5deg);
}

.menu-trigger {
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: var(--color-hot-pink);
}

/* Marquee */
.marquee-container {
    position: fixed;
    width: 100%;
    background: var(--color-acid-green);
    color: var(--color-black);
    padding: 0.5rem 0;
    z-index: 90;
    transform: rotate(2deg) scale(1.1);
    top: 50px;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}

.marquee-content {
    white-space: nowrap;
    font-weight: 900;
    font-size: 1.2rem;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #222 0%, #000 100%);
}

.hero-title {
    position: relative;
    z-index: 10;
}

.glitch-text {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 900;
    font-size: 15vw;
    line-height: 0.8;
    position: relative;
    color: var(--color-white);
    text-shadow: 5px 5px 0px var(--color-hot-pink);
}

.glitch-text.offset {
    margin-left: 20vw;
    color: var(--color-acid-green);
    text-shadow: -5px -5px 0px var(--color-electric-blue);
}

.hero-subtitle {
    margin-top: 2rem;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--color-bright-orange);
    transform: rotate(-2deg);
    z-index: 10;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    z-index: 1;
    filter: blur(2px);
    opacity: 0.8;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-hot-pink);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float 10s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-electric-blue);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%;
    right: 15%;
    animation: float 8s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-acid-green);
    top: 40%;
    right: 30%;
    transform: rotate(45deg);
    animation: spin 15s infinite linear;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Manifesto Section */
.manifesto {
    min-height: 80vh;
    background: var(--color-white);
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    position: relative;
}

.big-text {
    font-size: 10vw;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.big-text span {
    display: block;
}

.big-text .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-black);
    font-style: italic;
}

.manifesto-desc {
    max-width: 600px;
    margin-top: 3rem;
    font-size: 1.5rem;
    text-align: justify;
    font-weight: bold;
    border-left: 10px solid var(--color-bright-orange);
    padding-left: 2rem;
}

/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--color-black);
}

.service-card {
    height: 50vh;
    padding: 3rem;
    border: 1px solid var(--color-white);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: scale(0.95);
    z-index: 10;
}

.card-1 { background: var(--color-acid-green); color: var(--color-black); }
.card-2 { background: var(--color-hot-pink); color: var(--color-white); }
.card-3 { background: var(--color-electric-blue); color: var(--color-black); }
.card-4 { background: var(--color-bright-orange); color: var(--color-black); }

.service-card h2 {
    font-size: 4rem;
    font-family: var(--font-display);
    line-height: 0.9;
}

.service-card p {
    font-size: 1.2rem;
    font-weight: bold;
    border-top: 2px solid currentColor;
    padding-top: 1rem;
}

.icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 15rem;
    opacity: 0.2;
    transform: rotate(-15deg);
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: var(--color-black);
}

.gallery-item {
    height: 400px;
    background-color: #333;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-white);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.item-1 { background: url('https://picsum.photos/id/237/800/800') center/cover; }
.item-2 { background: url('https://picsum.photos/id/238/800/800') center/cover; }
.item-3 { background: url('https://picsum.photos/id/239/800/800') center/cover; }
.item-4 { background: url('https://picsum.photos/id/240/800/800') center/cover; }

.gallery-item h3 {
    font-size: 2rem;
    color: var(--color-acid-green);
    margin-bottom: 0.5rem;
}

/* Contact Footer */
.contact {
    min-height: 80vh;
    background: var(--color-electric-blue);
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-info {
    text-align: center;
    z-index: 10;
}

.contact h2 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 3rem;
    font-family: var(--font-display);
}

.email-link {
    font-size: 2rem;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 5px solid var(--color-hot-pink);
    transition: all 0.3s;
}

.email-link:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.socials {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.socials a {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-black);
    text-decoration: none;
    border: 2px solid var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.socials a:hover {
    background: var(--color-hot-pink);
    border-color: var(--color-hot-pink);
}

.footer-marquee {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--color-black);
    color: var(--color-white);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch-text { font-size: 20vw; }
    .glitch-text.offset { margin-left: 0; margin-top: -2rem; }
    .services { grid-template-columns: 1fr; }
    .big-text { font-size: 15vw; }
    .contact h2 { font-size: 3rem; }
    .marquee-container { top: 70px; }
}
