* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Hide scrollbar completely */
::-webkit-scrollbar {
    display: none;
}

:root {
    --bg-color: #050505;
    --bg-secondary: #0f0f0f;
    --accent-color: #a3e635;
    --accent-glow: rgba(163, 230, 53, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #333333;
    --container-width: 1400px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Force hide native cursor everywhere */
}

html, body {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 10000; /* Above everything but cursor */
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

#custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999; /* Ultra high */
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
    top: 0;
    left: 0;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998; /* Just below main cursor */
    transition: transform 0.25s ease-out;
    top: 0;
    left: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: var(--bg-color); /* Solid background from start */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
}

.logo {
    text-decoration: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.logo-main {
    font-size: 2.2rem; /* Größer als vorher */
    line-height: 1;
    letter-spacing: -1px;
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--accent-color);
    letter-spacing: 6px; /* Weite Sperrung für edlen Look */
    margin-top: 0.2rem;
    font-weight: 700;
    opacity: 0.9;
    text-align: left;
}

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

.accent-text {
    -webkit-text-stroke: 1px var(--accent-color);
    color: transparent;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

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

.nav-social {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    margin-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-social svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.nav-social:hover svg {
    color: var(--accent-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.hero {
    margin-top: 80px; /* Offset for the header bar */
    height: calc(100vh - 80px); /* Fill remaining screen */
    display: flex;
}

.hero-split {
    display: flex;
    width: 100%;
}

.hero-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Persistent Dark Overlay for Legibility */
.hero-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% dark overlay */
    transition: var(--transition-smooth);
    z-index: 1;
}

.hero-item:hover::after {
    background: rgba(0, 0, 0, 0.2); /* Image shines through on hover */
}

.hero-item:hover {
    flex: 1.5;
}

.hero-content {
    position: relative;
    z-index: 2; /* Above the overlay */
    text-align: center;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 5vw;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8); /* Deep shadow for pop */
}

/* Quote Section */
.quote-section {
    padding: 15rem 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.main-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -2px;
}

.accent-text-solid {
    color: var(--accent-color);
    text-shadow: 0 0 30px var(--accent-glow);
}

.btn-premium {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: var(--transition-smooth);
    background: transparent;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.btn-premium:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 30px var(--accent-glow);
}

.section-header {
    margin-bottom: 8rem;
    position: relative;
}

.section-header h2 {
    font-size: 12vw;
    opacity: 0.15; /* Spürbar sichtbarer */
    position: absolute;
    top: -3rem;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4); /* Kräftigere Kontur */
    color: transparent;
    pointer-events: none;
    letter-spacing: 15px;
    font-weight: 900;
}

.section-header .title-front {
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.section-header .title-front::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-text-stroke: 1px var(--accent-color);
    color: transparent;
    z-index: -1;
    transform: translate(5px, 5px);
    opacity: 0.5;
}

.portfolio-section {
    padding: 10rem 0;
}

.category-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 1rem 0 3rem 1.3rem;
    line-height: 1.6;
}

.carousel-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 10;
    transition: var(--transition-smooth);
    position: absolute;
    backdrop-filter: blur(5px);
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: black;
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev-btn {
    left: -20px;
}

.carousel-btn.next-btn {
    right: -20px;
}

.gallery-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    padding: 1rem 0; /* extra padding to prevent shadow clipping */
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc((100% - 4rem) / 3);
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-more {
    text-align: right;
    margin-bottom: 10rem;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-more:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(163, 230, 53, 0.05);
    transform: translateX(-5px);
}

.btn-more i {
    width: 14px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.shop-highlight {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-secondary));
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.shop-grid.unified-hub {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}

.shop-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.shop-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
}

.shop-card.pictrs:hover { border-color: #3b82f6; box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2); }
.shop-card.displate:hover { border-color: #f59e0b; box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2); }
.shop-card.youtube:hover { border-color: #ff0000; box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2); }
.shop-card.instagram:hover { border-color: #e1306c; box-shadow: 0 15px 40px rgba(225, 48, 108, 0.2); }
.shop-card.kofi:hover { border-color: #ff5f5f; box-shadow: 0 15px 40px rgba(255, 95, 95, 0.2); }

.shop-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.shop-card:hover .shop-icon {
    transform: scale(1.1);
    background: white;
}

.shop-card.pictrs:hover .shop-icon i { color: #3b82f6; }
.shop-card.displate:hover .shop-icon i { color: #f59e0b; }
.shop-card.youtube:hover .shop-icon i { color: #ff0000; }
.shop-card.instagram:hover .shop-icon i { color: #e1306c; }
.shop-card.kofi:hover .shop-icon i { color: #ff5f5f; }

.shop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shop-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.shop-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    align-items: center;
}

.shop-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.shop-card:hover .shop-cta {
    background: var(--accent-color);
    color: black;
    transform: scale(1.05);
}

.shop-card.pictrs:hover .shop-cta { background: #3b82f6; color: white; }
.shop-card.displate:hover .shop-cta { background: #f59e0b; color: white; }
.shop-card.youtube:hover .shop-cta { background: #ff0000; color: white; }
.shop-card.instagram:hover .shop-cta { background: #e1306c; color: white; }
.shop-card.kofi:hover .shop-cta { background: #ff5f5f; color: white; }

.about-section {
    padding: 10rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}

.gear-item-text {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 5px;
    animation: marquee 20s linear infinite;
}

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

.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 3rem;
    justify-content: center; /* Center the narrow cards */
    margin: 4rem auto;
}

.hub-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    text-decoration: none;
    color: white;
    transition: var(--transition-smooth);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-color);
    opacity: 0;
    transition: var(--transition-smooth);
}

.hub-card.youtube:hover::before { background: #ff0000; opacity: 1; }
.hub-card.instagram:hover::before { background: #e1306c; opacity: 1; }

.hub-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.hub-card i, .hub-card .hub-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    color: var(--text-muted); /* Default: Subtle Gray */
    opacity: 0.5;
}

.hub-card.youtube:hover i, .hub-card.youtube:hover .hub-icon { 
    color: #ff0000; 
    opacity: 1;
}

.hub-card.instagram:hover i, .hub-card.instagram:hover .hub-icon { 
    color: #e1306c; 
    opacity: 1;
}

.hub-card:hover i, .hub-card:hover .hub-icon {
    transform: scale(1.1);
}

.hub-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.hub-card:hover .hub-cta {
    background: var(--accent-color);
    color: black;
}

.hub-card.youtube:hover .hub-cta { background: #ff0000; color: white; }
.hub-card.instagram:hover .hub-cta { background: #e1306c; color: white; }

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-color);
    z-index: 2000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 60px;
    font-weight: 200;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

#lightbox-caption {
    margin: 2rem auto;
    display: block;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.meta-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(5px);
}

.meta-main {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 800;
}

.meta-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.meta-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-specs i {
    width: 16px;
    color: var(--text-secondary);
}

.meta-settings {
    display: flex;
    justify-content: center;
    gap: 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.meta-settings span {
    position: relative;
}

.meta-settings span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -1.5rem;
    color: var(--text-muted);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
    z-index: 2001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    z-index: 1000;
    transform: translateY(100px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(163, 230, 53, 0.3);
}

.back-to-top.visible {
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    background: white;
}

/* Skeleton Loading Animation */
.gallery-item.loading {
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

footer {
    padding: 10rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-big-text {
    font-size: 8vw;
    line-height: 0.8;
    color: var(--text-muted);
}
.footer-logo .logo-main {
    font-size: 4rem;
}
.footer-logo .logo-tag {
    letter-spacing: 10px;
}

@media (max-width: 1024px) {
    .container { padding: 0 4rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero-split { flex-direction: column; }
    .hero-item { height: 25vh; }
    .about-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hub-grid { grid-template-columns: repeat(1, 1fr); width: 100%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    * { cursor: auto !important; }
    #custom-cursor, .cursor-follower { display: none; }
    .shop-grid { grid-template-columns: 1fr; }
}
/* Premium Ko-fi Sektion */
.kofi-premium-section {
    padding: 8rem 0;
    position: relative;
}

.kofi-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    backdrop-filter: blur(20px);
}

.kofi-content {
    flex: 1;
}

.kofi-tag {
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.kofi-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.kofi-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-kofi-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ff5f5f;
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(255, 95, 95, 0.3);
}

.btn-kofi-main:hover {
    transform: translateY(-5px);
    background: white;
    color: #ff5f5f !important;
}

.kofi-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kofi-glow-circle {
    width: 250px;
    height: 250px;
    background: #ff5f5f;
    filter: blur(80px);
    opacity: 0.15;
    position: absolute;
}

.kofi-bg-icon {
    width: 150px;
    height: 150px;
    color: white;
    opacity: 0.05;
    transform: rotate(-15deg);
}

/* Floating Ko-fi Button */
.kofi-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ff5f5f;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(255, 95, 95, 0.4);
    transition: var(--transition-smooth);
}

.kofi-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: white;
    color: #ff5f5f !important;
}

@media (max-width: 1024px) {
    .kofi-card-large {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
    }
    .kofi-content h2 { font-size: 2.5rem; }
    .kofi-visual { display: none; }
    .kofi-float span { display: none; }
    .kofi-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 1200px) {
    .shop-grid.unified-hub {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid.unified-hub {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        filter: grayscale(0%);
    }
    
    /* Header Mobile */
    .logo-main { font-size: 1.25rem !important; }
    .logo-tag { letter-spacing: 2px !important; }
    .navbar { padding: 1.25rem 0; width: 100%; }
    .navbar .container { padding: 0 1rem; }
    
    /* Footer Mobile */
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    .footer-info {
        text-align: center !important;
    }
    
    /* Lightbox Mobile */
    .lightbox {
        padding-top: 30px;
    }
    .lightbox-content {
        max-width: 95%;
        max-height: 65vh;
    }
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    .meta-specs {
        flex-direction: column;
        gap: 0.8rem;
        font-size: 1rem;
    }
    .meta-settings {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        font-size: 0.7rem;
    }
    .meta-settings span:not(:last-child)::after {
        display: none;
    }
}
