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

:root {
    /* Dark Mode Colors */
    --primary-color: #0a0e27;
    --primary-light: #1a1f36;
    --secondary-color: #00ff88;
    --accent-color: #ff0055;
    --text-color: #e2e8f0;
    --text-light: #cbd5e1;
    --dark-bg: #0a0e27;
    --glass-bg: rgba(26, 31, 54, 0.7);
    --glass-border: rgba(0, 255, 136, 0.1);
    --white: #ffffff;
    --border-color: rgba(0, 255, 136, 0.2);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-md: 0 8px 32px 0 rgba(0, 255, 136, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 255, 136, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 255, 136, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(10px);
    
    /* Category Colors */
    --photos-primary: #00ff88;
    --photos-secondary: #00dd88;
    --videos-primary: #0066ff;
    --videos-secondary: #0055dd;
    
    /* Animated Gradient Colors */
    --gradient-red: #ff0055;
    --gradient-blue: #0066ff;
    --gradient-green: #00ff88;
    --gradient-black: #000000;
    --gradient-purple: #8800ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f36 50%, #0f1428 100%);
    background-attachment: fixed;
    min-height: 100vh;
    margin-top: 60px;
    margin-bottom: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 54, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    padding: 16px 20px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    text-decoration: none;
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
    transform: translateY(-2px);
}

/* ============ JOGA ICON STYLING ============ */
.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.4);
    padding: 6px;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: iconPulse 2s ease-in-out infinite;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0, 255, 136, 0.5)) contrast(1.2) brightness(1.1);
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

.logo:hover .logo-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 136, 0.6);
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 255, 136, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* ============ MENU BUTTON ============ */
.menu-btn {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #00ff88 0%, #0066ff 100%);
    border: 2px solid rgba(0, 255, 136, 0.5);
    cursor: pointer;
    z-index: 1001;
    padding: 8px 10px;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.menu-btn:hover {
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

.menu-btn span {
    width: 24px;
    height: 2.5px;
    background: white;
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============ NAVIGATION MENU ============ */
.nav-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: 3px solid rgba(0, 255, 136, 0.4);
    box-shadow: inset 0 1px 0 rgba(0, 255, 136, 0.2), 0 15px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.nav-menu.active {
    transform: translateX(0);
    box-shadow: inset 0 1px 0 rgba(0, 255, 136, 0.3), 0 15px 50px rgba(0, 255, 136, 0.2);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
}

.nav-menu a {
    display: block;
    padding: 18px 28px;
    color: #e2e8f0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    letter-spacing: 0.5px;
    line-height: 1.5;
    word-wrap: break-word;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.25) 0%, rgba(0, 102, 255, 0.15) 100%);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: #00ff88;
    padding-left: 40px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    background: rgba(0, 255, 136, 0.15);
    border-left: 4px solid #00ff88;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a.active {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.35) 0%, rgba(0, 102, 255, 0.2) 100%);
    color: #00ff88;
    border-left: 5px solid #00ff88;
    padding-left: 23px;
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.9);
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(0, 255, 136, 0.2), 0 4px 15px rgba(0, 255, 136, 0.2);
    border-radius: 4px;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============ HERO SECTION ============ */
.hero {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(-45deg, rgba(255, 0, 85, 0.15), rgba(0, 102, 255, 0.15), rgba(0, 255, 136, 0.15), rgba(26, 31, 54, 0.8), rgba(136, 0, 255, 0.15));
    background-size: 400% 400%;
    border-radius: 20px;
    color: var(--white);
    margin-bottom: 80px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideInDown 0.8s ease-out, gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    -webkit-backdrop-filter: blur(10px);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

/* Top Icon Section - Minimal Display */
.top-icon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px;
    animation: floatIn 0.8s ease-out, float 6s ease-in-out infinite;
}

.top-icon-section img {
    width: clamp(400px, 80vw, 800px);
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.5)) brightness(1.05) contrast(1.15) saturate(1.1);
    transition: var(--transition);
    object-fit: contain;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
}

.top-icon-section img:hover {
    filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8)) brightness(1.15) contrast(1.25) saturate(1.2);
    transform: scale(1.08);
}

/* Hero Icon Styling - Keep as fallback */
.hero-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    animation: floatIn 0.8s ease-out, float 6s ease-in-out infinite;
}

.hero-icon img {
    width: clamp(200px, 40vw, 400px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    transition: var(--transition);
    object-fit: contain;
}

.hero-icon img:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.7)) brightness(1.1);
    transform: scale(1.05);
}

/* ============ STATISTICS SECTION ============ */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin: 80px 0;
    padding: 50px 40px;
    background: rgba(26, 31, 54, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    animation: slideInUp 0.8s ease-out;
    padding: 20px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.15);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: clamp(32px, 6vw, 48px);
    display: block;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0px;
}

/* ============ VALUE PROPOSITION SECTION ============ */
.value-section {
    margin: 80px 0;
    padding: 50px 40px;
    background: rgba(26, 31, 54, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.value-content h2 {
    font-size: clamp(26px, 5vw, 36px);
    margin-bottom: 50px;
    text-align: center;
    color: #00ff88;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.15);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.value-item h4 {
    font-size: 17px;
    color: #00ff88;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.value-item p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

/* ============ CONTACT SECTION ============ */
.contact {
    margin: 80px 0 60px;
    padding: 50px 40px;
    background: rgba(26, 31, 54, 0.6);
    border-radius: 18px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-content h2 {
    font-size: clamp(26px, 5vw, 36px);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.contact-content > p {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 500;
}

.contact-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 102, 255, 0.2));
    color: #00ff88;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    transition: var(--transition);
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-link .social-icon {
    font-size: 18px;
    transition: var(--transition);
}

.contact-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.35), rgba(0, 102, 255, 0.35));
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.6);
}

.contact-link:hover .social-icon {
    transform: scale(1.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-icon {
    font-size: 32px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* ============ CTA BUTTON ============ */
.cta-btn,
.add-btn,
.category-link {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 102, 255, 0.2));
    color: #00ff88;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid rgba(0, 255, 136, 0.4);
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #0066ff);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 102, 255, 0.4));
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.6);
}

.cta-btn:hover::before {
    left: 0;
}

/* ============ FEATURES SECTION ============ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.feature-card {
    background: rgba(26, 31, 54, 0.6);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease-out var(--delay, 0s) forwards;
    opacity: 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, #00ff88, #0066ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.25), inset 0 1px 0 rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(26, 31, 54, 0.8);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-bg {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.3));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 102, 255, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-bg {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 102, 255, 0.25));
    border-color: rgba(0, 255, 136, 0.4);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.3));
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #00ff88;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* ============ SHOWCASE SECTION ============ */
.showcase-section {
    padding: 80px 20px;
    text-align: center;
}

.showcase-title {
    font-size: clamp(32px, 5vw, 46px);
    color: #00ff88;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    letter-spacing: -0.5px;
}

.showcase-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-gallery.showcase-single {
    grid-template-columns: 1fr;
    max-width: 100%;
    
}

.showcase-card {
    background: rgba(26, 31, 54, 0.6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    background: linear-gradient(135deg, rgba(26, 31, 54, 0.8), rgba(26, 31, 54, 0.6));
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #00ff88, #0066ff, #ff0055, #00ff88);
    background-size: 300% 300%;
    animation: colorShift 8s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(26, 31, 54, 0.95), rgba(26, 31, 54, 0.8));
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.6);
}

.showcase-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    cursor: pointer;
}

.showcase-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:rgba(0,255,136,0.6);stop-opacity:1" /><stop offset="50%" style="stop-color:rgba(0,102,255,0.6);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(0,255,136,0.6);stop-opacity:1" /></linearGradient></defs><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="url(%23grad)"/></svg>');
    background-size: 600px 120px;
    animation: water 5s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}

.showcase-gallery.showcase-single .showcase-image-wrapper {
    height: 450px;
}

.showcase-gallery.showcase-single .showcase-info {
    display: none;
}

.showcase-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1);
    border: 4px solid;
    border-image: linear-gradient(135deg, #00ff88, #0066ff, #ff0055, #00ff88) 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6), inset 0 0 20px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 102, 255, 0.4);
    animation: borderGlow 4s ease-in-out infinite;
}

.showcase-card:hover .showcase-image-wrapper img {
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.1);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.view-more-btn {
    background: linear-gradient(135deg, #00ff88 0%, #0066ff 100%);
    color: #0a0e27;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.view-more-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.5);
}

.showcase-info {
    padding: 24px;
}

.showcase-card h3 {
    color: #00ff88;
    font-size: 18px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.showcase-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

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

@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0%, 100% { 
        background-position: 200% center;
        border-color: rgba(0, 255, 136, 0.6);
    }
    50% { 
        background-position: -200% center;
        border-color: rgba(0, 102, 255, 0.6);
    }
}

@keyframes water {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), inset 0 0 20px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 102, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 102, 255, 0.9), inset 0 0 25px rgba(0, 102, 255, 0.4), 0 0 60px rgba(255, 0, 85, 0.6);
    }
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 60px 20px;
}

.about-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: clamp(28px, 5vw, 44px);
    color: #00ff88;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.about-container > p {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: rgba(26, 31, 54, 0.6);
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-left: 4px solid #00ff88;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.25), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    border-left-color: #0066ff;
    background: rgba(26, 31, 54, 0.8);
    border-color: rgba(0, 255, 136, 0.35);
}

.about-card h3 {
    color: #00ff88;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* ============ CATEGORIES SECTION ============ */
.categories-section {
    padding: 60px 20px;
}

.categories-section h1 {
    text-align: center;
    margin-bottom: 12px;
    font-size: clamp(28px, 5vw, 44px);
    color: #00ff88;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 15px;
    font-weight: 500;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.category-card {
    background: rgba(26, 31, 54, 0.6);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0055, #0066ff, #00ff88, #8800ff);
    background-size: 200% 200%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
    animation: gradientShift 4s ease infinite;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(26, 31, 54, 0.95);
}

.category-card:hover h2,
.category-card:hover p,
.category-card:hover .category-link {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.category-card:hover::before {
    transform: scaleX(1);
    opacity: 0.8;
}

.category-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.2));
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotateZ(10deg);
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
}

.category-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #00ff88;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* ============ SEARCH & FILTER SECTION ============ */
.search-filter-section {
    background: rgba(26, 31, 54, 0.6);
    padding: 36px;
    border-radius: 16px;
    margin-bottom: 60px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(26, 31, 54, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 25px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-bar:focus-within {
    border-color: #00ff88;
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 102, 255, 0.08));
    animation: borderGlow 2s ease-in-out infinite;
}

.search-icon {
    font-size: 18px;
    margin-right: 12px;
    color: #00ff88;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-color);
    font-family: inherit;
    background: transparent;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-btn {
    padding: 12px 28px;
    background: linear-gradient(-45deg, #ff0055, #0066ff, #00ff88, #8800ff);
    background-size: 300% 300%;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: gradientShift 6s ease infinite;
}

.search-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.search-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ============ SUGGESTIONS DROPDOWN ============ */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 31, 54, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.suggestions-dropdown.active {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: rgba(0, 255, 136, 0.15);
    padding-left: 30px;
    border-left: 3px solid #00ff88;
    padding-left: 27px;
    color: #00ff88;
}

.suggestion-icon {
    font-size: 16px;
    color: var(--secondary-color);
}

.suggestion-text {
    flex: 1;
}

.suggestion-match {
    font-weight: 700;
    color: var(--secondary-color);
}

.filter-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 10px 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    background: rgba(26, 31, 54, 0.6);
    color: var(--text-color);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-select:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.clear-filters-btn {
    padding: 10px 20px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    align-self: flex-end;
}

.clear-filters-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.active-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 30px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: slideInUp 0.3s ease-out;
}

.filter-tag .remove-tag {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.filter-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.6);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
    transition: var(--transition);
}

.category-card:hover p {
    color: #e0e0e0;
}

@keyframes bounce {
    0%, 100% { transform: scale(1.2) rotate(5deg); }
    50% { transform: scale(1.3) rotate(5deg); }
}


/* Photos Category Styling */
.photos-category {
    border-top: none;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.03), rgba(255, 136, 0, 0.03));
}

.photos-category h2 {
    color: #ff0055;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
    transition: var(--transition);
}

.photos-category:hover h2 {
    color: #ff8800;
    text-shadow: 0 0 25px rgba(255, 0, 85, 0.6);
}

.photos-category .category-link {
    background: linear-gradient(-45deg, #ff0055, #ff8800, #ff0055);
    background-size: 200% 200%;
    color: var(--white);
    border-color: #ff0055;
    animation: gradientShift 6s ease infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.photos-category .category-link:hover {
    background: linear-gradient(-45deg, #ff8800, #ff0055, #ff8800);
    border-color: #ff8800;
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Videos Category Styling */
.videos-category {
    border-top: none;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(136, 0, 255, 0.03));
}

.videos-category h2 {
    color: #0066ff;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
    transition: var(--transition);
}

.videos-category:hover h2 {
    color: #8800ff;
    text-shadow: 0 0 25px rgba(0, 102, 255, 0.6);
}

.videos-category .category-link {
    background: linear-gradient(-45deg, #0066ff, #8800ff, #0066ff);
    background-size: 200% 200%;
    color: var(--white);
    border-color: #0066ff;
    animation: gradientShift 6s ease infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.videos-category .category-link:hover {
    background: linear-gradient(-45deg, #8800ff, #0066ff, #8800ff);
    border-color: #8800ff;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* YouTube Thumbnails Category Styling */
.youtube-category {
    border-top: none;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.03), rgba(136, 0, 255, 0.03));
}

.youtube-category h2 {
    color: #ff0055;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
    transition: var(--transition);
}

.youtube-category:hover h2 {
    color: #ff4444;
    text-shadow: 0 0 25px rgba(255, 0, 85, 0.6);
}

.youtube-category .category-link {
    background: linear-gradient(-45deg, #ff0055, #ff4444, #ff0055);
    background-size: 200% 200%;
    color: var(--white);
    border-color: #ff0055;
    animation: gradientShift 6s ease infinite;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.youtube-category .category-link:hover {
    background: linear-gradient(-45deg, #ff4444, #ff0055, #ff4444);
    border-color: #ff4444;
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ============ CATEGORY PAGES HEADER ============ */
.category-header {
    text-align: center;
    padding: 60px 20px;
    border-radius: 16px;
    color: var(--white);
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.category-header h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-header p {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.photos-header {
    background: linear-gradient(-45deg, rgba(255, 0, 85, 0.55), rgba(255, 136, 0, 0.55), rgba(255, 238, 0, 0.55), rgba(255, 0, 85, 0.55));
    background-size: 400% 400%;
    box-shadow: 0 20px 50px rgba(255, 0, 85, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: gradientShift 10s ease infinite;
}

.videos-header {
    background: linear-gradient(-45deg, rgba(0, 102, 255, 0.55), rgba(136, 0, 255, 0.55), rgba(0, 102, 255, 0.55), rgba(0, 136, 255, 0.55));
    background-size: 400% 400%;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: gradientShift 10s ease infinite;
}

.youtube-header {
    background: linear-gradient(-45deg, rgba(255, 0, 85, 0.55), rgba(255, 68, 68, 0.55), rgba(255, 0, 85, 0.55), rgba(255, 0, 136, 0.55));
    background-size: 400% 400%;
    box-shadow: 0 20px 50px rgba(255, 0, 85, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: gradientShift 10s ease infinite;
}

/* ============ ADD CONTENT SECTION ============ */
.add-content-section {
    background: rgba(26, 31, 54, 0.6);
    padding: 36px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.add-content-section h2 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.add-content-section p.instruction {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 13px;
}

/* ============ FEATURED CONTENT SECTION ============ */
.featured-content {
    margin: 80px 0;
    padding: 60px 20px;
}

.featured-content h2 {
    text-align: center;
    font-size: clamp(26px, 5vw, 40px);
    color: #00ff88;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.featured-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 15px;
    font-weight: 500;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.thumbnail-card {
    background: rgba(26, 31, 54, 0.6);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.05);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.thumbnail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.thumbnail-image {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    font-size: 48px;
    opacity: 0;
    transition: var(--transition);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.thumbnail-card:hover .play-button {
    opacity: 1;
    transform: scale(1.2);
}

.thumbnail-info {
    padding: 16px;
}

.thumbnail-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.video-length {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.view-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.view-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.content-textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    resize: vertical;
    transition: var(--transition);
    background: rgba(26, 31, 54, 0.6);
    line-height: 1.5;
    color: #e2e8f0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 500;
}

.content-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.content-textarea:focus {
    outline: none;
    border: none;
    background: rgba(26, 31, 54, 0.8);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.2);
}

.content-textarea:readonly {
    background: rgba(26, 31, 54, 0.5);
    color: var(--text-light);
    cursor: pointer;
    border: none;
}

.content-textarea:readonly:focus {
    border: none;
    background: rgba(26, 31, 54, 0.7);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.25), inset 0 1px 0 rgba(0, 255, 136, 0.2);
}

/* ============ COPY BUTTON ============ */
.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 102, 255, 0.3));
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.35), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 102, 255, 0.4));
    border-color: rgba(0, 255, 136, 0.6);
}

.copy-btn:active {
    transform: translateY(-1px);
}

.photos-copy {
    background: linear-gradient(-45deg, #ff0055, #ff8800, #ffee00);
    background-size: 300% 300%;
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
    animation: gradientShift 5s ease infinite;
}

.photos-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 136, 0, 0.5);
}

.videos-copy {
    background: linear-gradient(-45deg, #0066ff, #8800ff, #00ff88);
    background-size: 300% 300%;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    animation: gradientShift 5s ease infinite 1.5s;
}

.videos-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}

.youtube-copy {
    background: linear-gradient(-45deg, #ff0055, #ff4444, #ff8800);
    background-size: 300% 300%;
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
    animation: gradientShift 5s ease infinite 1s;
}

.youtube-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.5);
}

/* YouTube Section Styling */
.responsive-content-section.youtube-section-1 .section-textbox,
.responsive-content-section.youtube-section-2 .section-textbox,
.responsive-content-section.youtube-section-3 .section-textbox,
.responsive-content-section.youtube-section-4 .section-textbox {
    border-left: 4px solid #ff0000;
}

.youtube-textarea {
    background: rgba(255, 0, 0, 0.05) !important;
}

.youtube-textarea:focus {
    border-color: #ff0000 !important;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1) !important;
}

/* YouTube Item Gallery Display */
.gallery-item.youtube-item {
    border-left: 4px solid #ff0000;
}

.gallery-item.youtube-item:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

/* ============ ADD BUTTON ============ */
.add-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.photos-add-btn {
    background: var(--photos-primary);
    color: var(--white);
    border: 2px solid var(--photos-primary);
}

.photos-add-btn:hover {
    background: var(--photos-secondary);
    border-color: var(--photos-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.videos-add-btn {
    background: var(--videos-primary);
    color: var(--white);
    border: 2px solid var(--videos-primary);
}

.videos-add-btn:hover {
    background: var(--videos-secondary);
    border-color: var(--videos-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.3);
}

/* ============ RESPONSIVE CONTENT SECTIONS ============ */
.responsive-content-section {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
    background: rgba(26, 31, 54, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.responsive-content-section:hover {
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.25), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-6px);
    animation: borderGlow 2s ease-in-out infinite;
    background: rgba(26, 31, 54, 0.8);
}

.responsive-content-section > div {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.section-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-item .gallery-item {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    border-radius: 12px;
    overflow: hidden;
}

.section-item .gallery-item img,
.section-item .gallery-item iframe,
.section-item .gallery-item video {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
    display: block;
}

.gallery-item video {
    background: #0a0e27;
    border-radius: 8px;
}

.gallery-item video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item video::-webkit-media-controls-play-button,
.gallery-item video::-webkit-media-controls-mute-button,
.gallery-item video::-webkit-media-controls-volume-slider,
.gallery-item video::-webkit-media-controls-fullscreen-button {
    filter: brightness(1.2);
}

.gallery-item video::-webkit-media-controls {
    color: #fff;
}

.section-textbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background: rgba(26, 31, 54, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
   
    padding: 20px;
    border-radius: 8px;
    min-height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-textbox h3 {
    font-size: 17px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-textbox .instruction {
    font-size: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.section-textbox .input-group {
    position: relative;
    margin-bottom: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-textbox .content-textarea {
    flex: 1;
    min-height: 150px;
    resize: vertical;
    font-size: 13px;
    background: rgba(26, 31, 54, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 12px;
    border-radius: 6px;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-textbox .copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* ============ ACTION BUTTONS ============ */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.download-pdf-btn,
.share-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.download-pdf-btn {
    background: linear-gradient(135deg, #10b981, #6ee7b7);
    color: white;
}

.download-pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn {
    background: linear-gradient(135deg, #3b82f6, #93c5fd);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-menu {
    display: none;
    position: absolute;
    bottom: 45px;
    right: 0;
    background: rgba(26, 31, 54, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    z-index: 50;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 150px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.share-menu.active {
    display: block;
}

.share-option {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-option:last-child {
    border-bottom: none;
}

.share-option:hover {
    background: rgba(0, 255, 136, 0.1);
    padding-left: 20px;
}

.share-option-icon {
    font-size: 14px;
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.videos-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ============ GALLERY ITEM ============ */
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(26, 31, 54, 0.6);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    border: none;
    background: rgba(26, 31, 54, 0.8);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 12px;
}

.gallery-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    transition: var(--transition);
    display: block;
    border-radius: 12px;
}

.gallery-item:hover img,
.gallery-item:hover iframe,
.gallery-item:hover video {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item-title {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    font-weight: 600;
    color: #00ff88;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}


.gallery-item.photos-item:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.gallery-item.videos-item {
    border-left: 4px solid var(--videos-primary);
}

.gallery-item.videos-item:hover {
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

.gallery-item.youtube-item {
    border-left: 4px solid #ff0000;
}

.gallery-item.youtube-item:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
    font-size: 16px;
}

/* ============ BACK LINK ============ */
.back-link {
    text-align: center;
    margin: 40px 0;
}

.back-link a {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.back-link a:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

/* ============ CONTACT SECTION ============ */
.contact {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    padding: 80px 20px;
    margin-top: 80px;
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

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

.contact-content h2 {
    font-size: clamp(28px, 5vw, 42px);
    color: #00ff88;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.contact-content > p:not(.contact-email):not(.contact-social) {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-email,
.contact-social {
    font-size: 16px;
    color: var(--text-light);
    margin: 15px 0;
    line-height: 1.8;
}

.contact-email a,
.contact-social a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.contact-email a:hover,
.contact-social a:hover {
    color: var(--accent-color);
    text-decoration: underline;
    transform: translateX(2px);
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 60px 40px 20px;
    margin-top: 100px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: inset 0 1px 0 rgba(0, 255, 136, 0.2), 0 -8px 32px rgba(0, 255, 136, 0.1);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    backdrop-filter: blur(10px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00ff88;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-column a:hover {
    color: #00ff88;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Social Link Styling */
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.social-icon {
    font-size: clamp(16px, 3vw, 20px);
    display: inline-block;
    transition: var(--transition);
}

.social-link.email-link:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.15);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.social-link.email-link:hover .social-icon {
    transform: scale(1.2) rotate(10deg);
}

.social-link.insta-link:hover {
    color: #ff0055;
    background: rgba(255, 0, 85, 0.15);
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.social-link.insta-link:hover .social-icon {
    transform: scale(1.2) rotate(-10deg);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.footer-content p {
    font-size: 14px;
    font-weight: 500;
}

/* ============ ANIMATIONS ============ */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes colorPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: #ff0055;
        box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
    }
    25% {
        border-color: #0066ff;
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    }
    50% {
        border-color: #00ff88;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    75% {
        border-color: #8800ff;
        box-shadow: 0 0 20px rgba(136, 0, 255, 0.5);
    }
}

/* ============ IMAGE LIGHTBOX MODAL ============ */
.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    z-index: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    animation: lightboxSlideIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 102, 255, 0.3));
    border: 2px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
    font-size: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.6), rgba(0, 102, 255, 0.6));
    border-color: #00ff88;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 102, 255, 0.3));
    border: 2px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    backdrop-filter: blur(10px);
    z-index: 5;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.6), rgba(0, 102, 255, 0.6));
    border-color: #00ff88;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-5px) scale(1.15);
}

.lightbox-next {
    right: 20px;
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(5px) scale(1.15);
}

.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 31, 54, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 15px 25px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 0.3s ease;
}

.lightbox-info p {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@keyframes lightboxSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============ SCROLL TO TOP BUTTON ============ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #0066ff);
    border: 2px solid rgba(0, 255, 136, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9), rgba(0, 102, 255, 0.9));
}

.arrow-up {
    animation: bounceUp 1s ease-in-out infinite;
    display: inline-block;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ============ HEADER SCROLL EFFECT ============ */
.header.scrolled {
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.25);
    background: rgba(26, 31, 54, 0.95);
    border-bottom-color: rgba(0, 255, 136, 0.3);
}

/* ============ BREADCRUMB NAVIGATION ============ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
    padding: 12px 20px;
    background: rgba(26, 31, 54, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.15);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.breadcrumb a {
    color: #00ff88;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ============ COPY BUTTON ENHANCEMENTS ============ */
.copy-btn {
    position: relative;
    overflow: hidden;
}

.copy-btn.copied {
    background: linear-gradient(135deg, #00ff88, #00dd88);
    color: #000;
    font-weight: 700;
}

.copy-btn.copied::after {
    content: '✓ Copied!';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============ LOADING STATES ============ */
.loading {
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.image-loading {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.1), rgba(0, 102, 255, 0.1), rgba(0, 255, 136, 0.1));
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ============ FOOTER SOCIAL ICONS ============ */
/* Removed footer social icons */

/* ============ ENHANCED CATEGORY CARDS ============ */
.category-card {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

.category-card:nth-child(1) { animation-delay: 0s; }
.category-card:nth-child(2) { animation-delay: 0.1s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* ============ RESPONSIVE DESIGN ============ */
@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }

    .nav-menu {
        position: static;
        transform: translateX(0);
        background: transparent;
        top: auto;
        bottom: auto;
        display: flex !important;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
        overflow-y: visible;
        width: auto;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .nav-menu a {
        border-bottom: none;
        border-bottom: 3px solid transparent;
        padding: 18px 24px;
        color: var(--text-light);
        font-weight: 600;
        letter-spacing: 0.3px;
        position: relative;
        line-height: 1.2;
        transition: all 0.3s ease;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        color: #00ff88;
        padding-left: 24px;
        border-bottom-color: #00ff88;
        background: transparent;
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    }

    .nav-menu a.active {
        margin-top: 2px;
        color: #00ff88;
        border-bottom-color: #00ff88;
        border-bottom-width: 3px;
        border-left: none;
        background: transparent;
        padding-left: 24px;
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.7);
        font-weight: 700;
    }

    .body.menu-open {
        overflow: hidden;
    }

    /* Desktop Icon Responsive */
    .logo-icon {
        width: 44px;
        height: 44px;
        padding: 5px;
    }
}

@media (max-width: 767px) {
    .menu-btn {
        display: flex;
    }

    body {
        margin-bottom: 0;
    }

    .main-content {
        padding: 30px 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 15px;
    }

    .gallery-item img,
    .gallery-item iframe {
        height: 150px;
    }

    .category-card {
        padding: 25px 15px;
    }

    .add-content-section {
        padding: 25px 15px;
    }

    .content-textarea {
        min-height: 120px;
    }

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 30px;
    }

    /* Responsive Content Section Mobile */
    .responsive-content-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }

    .responsive-content-section > div {
        flex: 1;
        width: 100%;
    }

    .section-item {
        width: 100%;
    }

    .section-item .gallery-item img,
    .section-item .gallery-item iframe,
    .section-item .gallery-item video {
        height: auto;
    }

    .section-textbox .content-textarea {
        min-height: 300px;
    }

    /* Responsive Search & Filter Section for Tablet */
    .search-filter-section {
        padding: 25px 15px;
        margin-bottom: 50px;
    }

    .search-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin-left: 10px;
    }

    .filter-panel {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-bottom: 20px;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    .clear-filters-btn {
        width: 100%;
        grid-column: 1 / -1;
    }

    .active-filters {
        gap: 10px;
    }

    .filter-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Responsive Action Buttons for Tablet */
    .action-buttons {
        gap: 10px;
    }

    .download-pdf-btn,
    .share-btn {
        min-width: 110px;
        padding: 9px 14px;
        font-size: 12px;
    }

    /* Tablet Icon Responsive */
    .logo-icon {
        width: 28px;
        height: 28px;
        padding: 3px;
    }

    .logo {
        font-size: 18px;
    }
}

/* ============ LIGHTBOX RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .lightbox-image {
        max-width: 95%;
        max-height: 75vh;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .lightbox-image {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
    
    .lightbox-info {
        bottom: 20px;
        max-width: 90%;
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .lightbox-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .image-lightbox {
        padding: 10px;
    }
    
    .lightbox-image {
        max-width: 100%;
        max-height: 65vh;
        border-radius: 8px;
    }
    
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 5px;
    }
    
    .lightbox-next {
        right: 5px;
    }
    
    .lightbox-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: 5px;
        right: 5px;
    }
    
    .lightbox-info {
        bottom: 10px;
        max-width: 95%;
        padding: 10px 15px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    .lightbox-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
        gap: 6px;
    }

    /* Mobile Icon Responsive */
    .logo-icon {
        width: 36px;
        height: 36px;
        padding: 4px;
        border-radius: 6px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-feature-item {
        font-size: 12px;
        gap: 8px;
    }

    .hero-feature-icon {
        font-size: 24px;
    }

    /* Mobile Top Icon Section */
    .top-icon-section {
        padding: 30px 20px 15px;
    }

    .top-icon-section img {
        width: 360px;
    }

    /* Mobile Hero Icon Responsive */
    .hero-icon {
        margin-bottom: 20px;
    }

    .hero-icon img {
        width: 180px;
    }

    .categories-grid {
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
        gap: 10px;
    }

    .add-btn {
        padding: 12px;
        font-size: 14px;
    }

    /* Responsive Statistics Section */
    .stats {
        gap: 20px;
        padding: 30px 15px;
        margin: 40px 0;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Responsive Value Section */
    .value-section {
        padding: 30px 15px;
        margin: 40px 0;
    }

    .value-content h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .value-grid {
        gap: 20px;
    }

    .check-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .value-item h4 {
        font-size: 16px;
    }

    .value-item p {
        font-size: 13px;
    }

    /* Responsive Contact Section */
    .contact {
        padding: 30px 15px;
        margin: 40px 0 30px;
    }

    .contact-content h2 {
        font-size: 24px;
    }

    .contact-links {
        gap: 10px;
    }

    .contact-link {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Responsive Content Section Extra Small */
    .section-item .gallery-item img,
    .section-item .gallery-item iframe {
        height: auto;
    }

    /* Responsive Search & Filter Section for Mobile */
    .search-filter-section {
        padding: 20px 15px;
        margin-bottom: 40px;
        background: rgba(26, 31, 54, 0.6);
        border: 1px solid rgba(0, 255, 136, 0.2);
        box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .search-bar {
        padding: 12px 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }

    .search-icon {
        font-size: 16px;
        margin-right: 10px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-btn {
        padding: 8px 16px;
        font-size: 12px;
        margin-left: 8px;
        border-radius: 6px;
    }

    .filter-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 15px;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
    }

    .filter-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .filter-select {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .clear-filters-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
        margin-top: 12px;
        border-radius: 8px;
    }

    .active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .filter-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Responsive Action Buttons */
    .action-buttons {
        gap: 8px;
    }

    .download-pdf-btn,
    .share-btn {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .share-menu {
        bottom: 40px;
        min-width: 130px;
    }

    .share-option {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Mobile Category Header */
    .category-header {
        padding: 40px 15px;
        margin-bottom: 30px;
    }

    .category-header h1 {
        margin-bottom: 8px;
    }

    .category-header p {
        font-size: 14px;
    }

    /* Mobile Social Links */
    .social-link {
        padding: 6px 10px;
        font-size: 13px;
    }

    .social-icon {
        font-size: 18px;
    }

    /* Mobile Scroll to Top Button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Mobile Breadcrumb */
    .breadcrumb {
        font-size: 12px;
        padding: 10px 15px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .breadcrumb a,
    .breadcrumb .current {
        font-size: 12px;
    }

    /* Mobile Stats */
    .stats {
        gap: 15px;
        padding: 30px 20px;
        margin: 40px 0;
    }

    .stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Mobile Feature Cards */
    .feature-card {
        padding: 25px;
    }

    .feature-icon-bg {
        width: 80px;
        height: 80px;
        font-size: 48px;
        border-radius: 16px;
    }

    /* Mobile Footer Social Icons */
    /* Removed footer social icons */

    /* Copy button on mobile */
    .copy-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}
