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

* {
    cursor: url('../images/cursor.svg'), auto !important;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

a, button, .btn, .video-card, .play-button, .fullscreen-button,
a:hover, button:hover, .btn:hover, .video-card:hover, .play-button:hover, .fullscreen-button:hover {
    cursor: url('../images/hovercursor.svg'), pointer !important;
}

*:active {
    cursor: url('../images/hovercursor.svg'), pointer !important;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}


main {
    padding-top: 80px;
}

.logo {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-logo-left {
    display: block;
    flex-shrink: 0;
}

.header-logo-left img {
    height: 45px;
    width: auto;
}

/* Logo switching for dark mode */
.header-logo-left .logo-dark {
    display: none;
}

body.dark-mode .header-logo-left .logo-light {
    display: none;
}

body.dark-mode .header-logo-left .logo-dark {
    display: block;
}

/* Theme Toggle with Sun/Moon Animation */
@import url("https://unpkg.com/open-props/easings.min.css");

.theme-toggle {
    --icon-fill: #000000;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-fill);
    transition: transform 0.2s ease;
}

.theme-toggle:hover {
    transform: scale(1.2);
}

.sun-and-moon {
    transition: transform 0.5s ease;
}

.sun-and-moon > :is(.moon, .sun, .sun-beams) {
    transform-origin: center;
}

.sun-and-moon > :is(.moon, .sun) {
    fill: var(--icon-fill);
    transition: transform 0.5s ease;
}

.sun-and-moon > .sun {
    transform: scale(1);
}

.sun-and-moon > .sun-beams {
    stroke: var(--icon-fill);
    stroke-width: 2px;
    transform: rotateZ(0deg);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

[data-theme="dark"] .theme-toggle {
    --icon-fill: #ffffff;
}

[data-theme="dark"] .sun-and-moon > .sun {
    transform: scale(1.75);
}

[data-theme="dark"] .sun-and-moon > .sun-beams {
    opacity: 0;
}

[data-theme="dark"] .sun-and-moon > .moon > circle {
    transform: translateX(-7px);
}

@supports (cx: 1) {
    [data-theme="dark"] .sun-and-moon > .moon > circle {
        cx: 17;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .sun-and-moon > .sun {
        transition: transform .5s var(--ease-elastic-3);
    }

    .sun-and-moon > .sun-beams {
        transition: transform .5s var(--ease-elastic-4), opacity .5s var(--ease-3);
    }

    .sun-and-moon .moon > circle {
        transition: transform .25s var(--ease-out-5);
    }

    @supports (cx: 1) {
        .sun-and-moon .moon > circle {
            transition: cx .25s var(--ease-out-5);
        }
    }

    [data-theme="dark"] .sun-and-moon > .sun {
        transition-timing-function: var(--ease-3);
        transition-duration: .25s;
        transform: scale(1.75);
    }

    [data-theme="dark"] .sun-and-moon > .sun-beams {
        transition-duration: .15s;
        transform: rotateZ(-25deg);
    }

    [data-theme="dark"] .sun-and-moon > .moon > circle {
        transition-duration: .5s;
        transition-delay: .25s;
    }
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #BFFF00;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.contact-btn::after {
    background-color: #000000;
}

.nav-link:hover {
    color: #666666;
    transform: scale(1.1);
}

.contact-btn {
    background-color: #BFFF00;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #000000;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

.contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -45deg,
        hsla(0, 0%, 0%, 0) 60%,
        rgba(255, 255, 255, 0.8) 70%,
        hsla(0, 0%, 0%, 0),
        hsla(0, 0%, 0%, 0) 100%
    );
    transition: 650ms ease;
    background-size: 250% 250%, 100% 100%;
    background-repeat: no-repeat;
    background-position: -100% -100%, 0 0;
}

.contact-btn:hover {
    background-color: #a6e600;
    color: #000000;
}

.contact-btn:hover::before {
    background-position: 100% 100%, 0 0;
}

body.dark-mode .contact-btn {
    background-color: #BFFF00;
    color: #000000;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-size: cover;
    background-position: center;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.white {
    color: #ffffff;
}

.lime {
    color: #BFFF00;
}

/* True Focus Effect */
.focus-container {
    position: relative;
    display: flex;
    gap: 0.5em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    outline: none;
    user-select: none;
}

.focus-word {
    position: relative;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.3s ease, color 0.3s ease;
    outline: none;
    user-select: none;
    color: #ffffff;
}

.focus-word.active {
    filter: blur(0);
}

.focus-word.cool-word {
    color: #BFFF00;
    text-shadow: 0 0 20px rgba(191, 255, 0, 0.6), 0 0 40px rgba(191, 255, 0, 0.3);
}

.green-dot {
    color: #BFFF00;
    text-shadow: 0 0 20px rgba(191, 255, 0, 0.6), 0 0 40px rgba(191, 255, 0, 0.3);
}

.focus-frame {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    box-sizing: content-box;
    border: none;
    opacity: 0;
}

.corner {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 3px solid var(--border-color, #BFFF00);
    filter: drop-shadow(0px 0px 4px var(--border-color, #BFFF00));
    border-radius: 3px;
    transition: none;
}

.top-left {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: -10px;
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: -10px;
    left: -10px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.ascii-cool canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.ascii-cool pre {
    margin: 0;
    user-select: none;
    padding: 0;
    line-height: 1em;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    width: 180px;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-outline {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border-color: #BFFF00;
}

.btn-primary {
    background-color: #BFFF00;
    color: #000000;
    border-color: #BFFF00;
    overflow: hidden;
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -45deg,
        hsla(0, 0%, 0%, 0) 60%,
        rgba(255, 255, 255, 0.8) 70%,
        hsla(0, 0%, 0%, 0),
        hsla(0, 0%, 0%, 0) 100%
    );
    transition: 650ms ease;
    background-size: 250% 250%, 100% 100%;
    background-repeat: no-repeat;
    background-position: -100% -100%, 0 0;
}

.btn-primary:hover {
    background-color: #a6e600;
    border-color: #a6e600;
}

.btn-primary:hover::before {
    background-position: 100% 100%, 0 0;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 1rem;
    color: #000000;
    white-space: pre-wrap;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section-title.visible {
    opacity: 1;
}

.text-type__content {
    display: inline-block;
}

.text-type__cursor {
    margin-left: 0.25rem;
    display: inline-block;
    opacity: 1;
}

.text-type__cursor--hidden {
    display: none;
}

.section-subtitle {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
    white-space: nowrap;
    overflow: visible;
}

.section-subtitle.visible {
    opacity: 1;
}

/* Projects Section */
.projects-section {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

/* Video Grid - middle boxes vertical, others match height */
.video-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.5fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    
    max-width: 1000px;
    margin: 0 auto 3rem;
    height: 500px;
}

.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
}

.video-card-visible {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.video-card-visible:nth-child(1) {
    animation-delay: 0.1s;
}

.video-card-visible:nth-child(2) {
    animation-delay: 0.3s;
}

.video-card-visible:nth-child(3) {
    animation-delay: 0.5s;
}

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

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

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(191, 255, 0, 0.9);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card .play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video-card .play-button:hover {
    background-color: rgba(191, 255, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.fullscreen-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    color: #BFFF00;
}

.fullscreen-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Logo Loop - Smooth infinite scroll */
.logoloop {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
    --logoloop-gap: 64px;
    --logoloop-logoHeight: 60px;
}

.logoloop__track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.logoloop__list {
    display: flex;
    align-items: center;
    gap: var(--logoloop-gap);
    list-style: none;
    margin: 0;
    padding: 0 calc(var(--logoloop-gap) / 2);
}

.logoloop__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--logoloop-logoHeight);
    background-color: #ffffff;
    padding: 0 1.5rem;
}

.logoloop__item img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logoloop__item .logo-light {
    display: none;
}

.logoloop__item .logo-dark {
    display: block;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #808080;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.video-card:hover .play-button {
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    padding: 1rem 3rem 7rem 3rem;
    text-align: center;
    background-color: #ffffff;
}

/* About Section */
.about-section {
    padding: 4rem 3rem;
    background-color: #ffffff;
    text-align: center;
}

.about-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    flex: 0 0 auto;
    width: 280px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000000;
}

.bts-toggle-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.bts-toggle-btn {
    --green: #BFFF00;
    font-size: 15px;
    padding: 0.5em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: 'Space Mono', monospace;
    border-radius: 0.6em;
    overflow: visible;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(191, 255, 0, 0.1) 1%, transparent 40%, transparent 60%, rgba(191, 255, 0, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(191, 255, 0, 0.4), 0 0 9px 3px rgba(191, 255, 0, 0.1);
    min-width: 250px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bts-arrow {
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
    flex-shrink: 0;
}

.bts-toggle-btn.expanded .bts-arrow {
    transform: rotate(180deg);
}

.bts-toggle-btn:hover {
    color: #d4ff66;
    box-shadow: inset 0 0 10px rgba(191, 255, 0, 0.6), 0 0 9px 3px rgba(191, 255, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
    border-color: #BFFF00;
}

.bts-toggle-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -45deg,
        hsla(0, 0%, 0%, 0) 60%,
        rgba(255, 255, 255, 0.8) 70%,
        hsla(0, 0%, 0%, 0),
        hsla(0, 0%, 0%, 0) 100%
    );
    transition: 650ms ease;
    background-size: 250% 250%, 100% 100%;
    background-repeat: no-repeat;
    background-position: -100% -100%, 0 0;
    z-index: 1;
}

.bts-toggle-btn:hover::before {
    background-position: 100% 100%, 0 0;
}

.bts-toggle-text,
.bts-arrow {
    position: relative;
    z-index: 2;
}

.behind-scenes-container {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    opacity: 1;
}

.behind-scenes-container.collapsed {
    max-height: 0;
    opacity: 0;
}

.behind-scenes-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    transform-origin: top;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Flip Card Styles */
.flip-card {
    perspective: 1000px;
    background-color: #000000;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    background-color: #000000;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #000000;
}

.flip-card-back {
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid #BFFF00;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.flip-card-back h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #BFFF00;
}

.flip-card-back p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.flip-card-back .bio {
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 400;
    color: #cccccc;
}

.about-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333333;
}

/* Contact Section */
.contact-section {
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    border: 3px solid #BFFF00;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 400;
    color: #000000;
}

.form-group input,
.form-group textarea {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    padding: 0.9rem 1rem;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 0;
    color: #000000;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BFFF00;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-submit {
    align-self: center;
    margin-top: 1.5rem;
    padding: 0.8rem 3rem;
    border-radius: 6px;
}

/* Form Status Messages */
.form-status {
    display: none;
    font-size: 0.85rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.form-status--loading {
    background-color: rgba(191, 255, 0, 0.1);
    color: #000000;
    border: 1px solid rgba(191, 255, 0, 0.3);
}

.form-status--success {
    background-color: rgba(0, 255, 0, 0.1);
    color: #000000;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.form-status--error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #2a2a2a;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-name {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo {
    height: 50px;
    width: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Scroll Animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-slide-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-stagger > *.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        height: 35px;
    }

    nav {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    .dark-mode-toggle {
        top: 1rem;
        right: 1rem;
    }

    main {
        padding-top: 120px;
    }

    .hero {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .hero-text {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-we-make {
        margin-right: -30px;
    }

    .hero-videos {
        margin-left: -30px;
    }

    .ascii-cool {
        width: 200px;
        height: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
    }

    .video-card.portrait {
        aspect-ratio: 16 / 9;
    }

    .logoloop {
        --logoloop-logoHeight: 50px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .projects-section,
    .about-section,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }

    .footer {
        padding: 1.5rem 1.5rem;
    }

    .footer-logo {
        height: 35px;
    }
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #000000;
    color: #ffffff;
}

body.dark-mode header {
    background-color: #000000;
}

body.dark-mode .nav-link {
    color: #ffffff;
}

body.dark-mode .nav-link.contact-btn {
    color: #000000;
}

body.dark-mode .nav-link:hover {
    color: #cccccc;
}

body.dark-mode .nav-link.contact-btn:hover {
    color: #000000;
}

body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .section-subtitle {
    color: #999999;
}

body.dark-mode .projects-section {
    background-color: #000000;
}

body.dark-mode .about-section {
    background-color: #000000;
}

body.dark-mode .about-content p {
    color: #cccccc;
}

body.dark-mode .contact-section {
    background-color: #000000;
}

body.dark-mode .contact-form-wrapper {
    background-color: #000000;
    border: 3px solid #BFFF00;
}

body.dark-mode .form-group label {
    color: #ffffff;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    border-color: #333333;
    color: #ffffff;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .video-placeholder {
    background-color: #333333;
}

body.dark-mode .gallery-item {
    background-color: #000000;
}

body.dark-mode .logoloop__item {
    background-color: #000000;
}

body.dark-mode .logoloop__item .logo-light {
    display: block;
}

body.dark-mode .logoloop__item .logo-dark {
    display: none;
}

body.dark-mode .cta-section {
    background-color: #000000;
}

body.dark-mode .footer {
    background-color: #1a1a1a;
}

body.dark-mode .footer-name {
    color: #ffffff;
}

