:root {
    /* New Palette - Audiovisual Premium */
    --primary: #ffffff;
    /* Pure White */
    --secondary: #8e8e93;
    /* Mid Gray from palette */
    --accent: #00d46a;
    /* Neon Green */
    --accent-glow: rgba(0, 212, 106, 0.4);
    --bg-dark: #0a0a0c;
    /* Deep Black */
    --bg-card: #1c1c1e;
    /* Dark Gray from palette */
    --text-main: #ffffff;
    --text-dim: #888888;

    /* Fonts - Grotesque Modern */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1300px;
    --gap: 2.5rem;
}

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

@media (max-width: 1024px) {
    * {
        cursor: auto !important;
    }

    #cursor,
    #cursor-follower {
        display: none !important;
    }
}

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

#cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
}

/* Grain / Noise Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9990;
    transform: translateZ(0);
    /* Force GPU */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.highlight {
    background: linear-gradient(135deg, var(--accent), #f2f2f2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
#main-header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-header.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section - 60/40 Grid & Animated Gradient */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    position: relative;
    z-index: 5;
    height: 100%;
    min-height: 80vh;
}

.mascot-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.05;
    /* Slightly more visible but still subtle */
    overflow: hidden;
}

.mascot-img-bg {
    width: auto;
    height: 110%;
    /* Makes it cover more vertical space */
    object-fit: contain;
    transform: scale(1.2);
    /* Adjust scale as needed */
    filter: grayscale(1) brightness(1.5);
    /* Neutralize to fit background */
}

.hero-side-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: sideLogoPulse 4s infinite alternate ease-in-out;
}

@keyframes sideLogoPulse {
    from {
        transform: scale(1);
        filter: drop-shadow(0 0 20px var(--accent-glow));
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px var(--accent-glow));
    }
}

.hero-bg-animated {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg-animated::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 40%);
    animation: moveGradient 15s infinite alternate ease-in-out;
    opacity: 0.2;
    will-change: transform;
}

@keyframes moveGradient {
    0% {
        transform: translate(-5%, -5%) rotate(0deg);
    }

    100% {
        transform: translate(5%, 5%) rotate(10deg);
    }
}

.hero-left {
    padding-left: 10%;
    position: relative;
    z-index: 2;
}

.logo-animated-hero {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards 0.3s;
}

.logo-animated-hero img {
    height: 80px;
    width: auto;
}

#hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-main);
}

#hero p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 550px;
}

.subcopy {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-main {
    padding: 1.25rem 3rem;
    background: var(--accent);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    #hero {
        padding-top: 100px;
    }

    .hero-grid-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .hero-left {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-side-logo {
        order: -1;
        margin-bottom: 1rem;
    }

    .side-logo-img {
        max-width: 180px;
    }

    #hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        width: 100%;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 1rem;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .projects-asymmetric {
        grid-template-columns: 1fr;
    }

    .project-item:nth-child(n) {
        grid-column: span 1;
        height: 350px;
    }

    .mascot-bg-container {
        opacity: 0.02;
        /* Extremely subtle on mobile to not distract */
    }

    .mascot-img-bg {
        height: 60%;
        transform: scale(1.1);
    }

    .video-overlay h3 {
        font-size: 1.5rem;
    }
}

/* Projects Section */
#projects {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--gap);
}

.project-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card:hover {
    transform: scale(1.02);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.03) 50%, transparent 60%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Animations */
.reveal,
.reveal-delay,
.reveal-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease-out;
    will-change: transform, opacity;
}

.reveal.active,
.reveal-delay.active,
.reveal-delay-2.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
#services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.service-card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-card ul {
    list-style: none;
    color: var(--text-dim);
}

.service-card li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Showreel */
#showreel {
    padding: 50px 0;
}

.showreel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.showreel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}

.video-overlay h3 {
    font-size: clamp(2rem, 8vw, 5rem);
    margin-bottom: 2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 900;
}

.btn-play {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-play::before {
    content: '🔊';
    font-size: 1.2rem;
}

.btn-play:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow);
}

.showreel-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.showreel-container.playing .showreel-video {
    opacity: 1;
}

.btn-mute {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.showreel-container.playing .btn-mute {
    opacity: 1;
    pointer-events: all;
}

.btn-mute:hover {
    background: var(--accent);
    color: #000;
    transform: scale(1.1);
}

/* Projects Asymmetric */
#projects {
    padding: 100px 0;
}

.section-header.center {
    text-align: center;
    margin-bottom: 6rem;
}

.projects-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-item:nth-child(1) {
    grid-column: span 8;
    height: 500px;
}

.project-item:nth-child(2) {
    grid-column: span 4;
    height: 500px;
}

.project-item:nth-child(3) {
    grid-column: span 4;
    height: 400px;
}

.project-item:nth-child(4) {
    grid-column: span 4;
    height: 400px;
}

.project-item:nth-child(5) {
    grid-column: span 4;
    height: 400px;
}

.project-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.project-hint {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(2px);
}

.project-item:hover .project-hint {
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0px);
}

.hint-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-item:hover .hint-text {
    transform: scale(1.1) translateY(-10px);
}

.project-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-item:hover .project-thumb {
    transform: scale(1.1);
}

.media-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

.hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.project-item:hover .hover-video {
    opacity: 1;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-overlay .type {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-overlay h3 {
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem;
}

.view-case {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
}

/* Process Section */
#process {
    padding: 100px 0;
    background: #070708;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 5rem;
}

.process-step {
    flex: 1;
    position: relative;
    padding-top: 3rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.1;
    font-family: var(--font-heading);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Common Helpers */
.center {
    text-align: center;
}

.center.cta-group {
    justify-content: center;
}

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

    .process-timeline {
        flex-direction: column;
    }

    .projects-asymmetric {
        grid-template-columns: 1fr;
    }

    .project-item:nth-child(n) {
        grid-column: span 1;
        height: 350px;
    }
}

/* Contact Section */
#contact {
    padding: 10rem 0;
    background: #050505;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.contact-direct {
    margin-top: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(40, 40, 45, 0.3);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
}

.contact-item .icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.contact-item h5 {
    color: var(--accent);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.contact-item p {
    color: var(--white);
    opacity: 0.8;
}

.premium-form {
    background: rgba(20, 20, 22, 0.5);
    padding: 3.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.07);
    outline: none;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.form-info-note {
    background: rgba(0, 212, 106, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    border-left: 4px solid var(--accent);
    color: var(--secondary);
    line-height: 1.5;
}

.w-full {
    width: 100%;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .premium-form {
        padding: 2.5rem;
    }
}

#main-footer {
    padding: 8rem 0 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 106, 0.02));
    position: relative;
    overflow: hidden;
}

#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--secondary);
    max-width: 350px;
    line-height: 1.8;
}

.footer-nav h4,
.footer-social h4 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-nav a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    height: 2rem;
    display: block;
}

.social-name,
.social-hover {
    display: block;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.social-hover {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.social-item:hover .social-name {
    transform: translateY(-100%);
}

.social-item:hover .social-hover {
    transform: translateY(-100%);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
    font-size: 0.85rem;
}

.watermark-link {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watermark-link:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links-premium {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}