* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Disable tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection only for input fields and text areas */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(15, 15, 25, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.logo-image {
    height: 56px;
    width: 56px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.05));
}

.logo-image:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.4);
}

.logo-image:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.brand-name {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link.active {
    color: #fff;
}

.nav-center {
    flex: 1;
    max-width: 650px;
    margin: 0 50px;
    display: flex;
    align-items: center;
}

.search-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: rgba(102, 126, 234, 0.6);
    font-size: 17px;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-container:hover .search-icon {
    color: rgba(102, 126, 234, 0.8);
}

.search-bar {
    width: 100%;
    padding: 15px 24px 15px 52px;
    background: rgba(102, 126, 234, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Fix autofill white background */
.search-bar:-webkit-autofill,
.search-bar:-webkit-autofill:hover,
.search-bar:-webkit-autofill:focus,
.search-bar:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.08) inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.search-bar:focus {
    outline: none;
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.search-placeholder {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 0;
    user-select: none;
}

.search-bar.has-value + .search-placeholder {
    opacity: 0;
    visibility: hidden;
}

.placeholder-animated {
    display: inline-block;
    height: 22px;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
}

.placeholder-animated span {
    display: block;
    height: 22px;
    line-height: 22px;
    animation: slideUp 8s infinite;
    background: linear-gradient(135deg, #667eea 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

@keyframes slideUp {
    0%, 20% {
        transform: translateY(0);
    }
    25%, 45% {
        transform: translateY(-100%);
    }
    50%, 70% {
        transform: translateY(-200%);
    }
    75%, 95% {
        transform: translateY(-300%);
    }
    100% {
        transform: translateY(-400%);
    }
}

/* Search Icon */
.nav-search::before {
    content: '🔍';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.6;
    pointer-events: none;
}

.container {
    padding: 25px 50px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

.category-tabs {
    position: relative;
    margin-bottom: 35px;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
}

.category-scroll-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 0 12px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    cursor: grab;
    user-select: none;
}

.category-scroll-wrapper:active {
    cursor: grabbing;
}

.category-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.category-scroll-wrapper #categoryButtons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.category-scroll-arrow {
    display: none !important;
}

.category-scroll-arrow{ /* hover removed */
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.category-scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.category-scroll-arrow.visible {
    display: flex;
}

.category-scroll-arrow.left {
    left: 0;
}

.category-scroll-arrow.right {
    right: 0;
}

/* Gradient fade effect on edges - removed */
.category-tabs::before,
.category-tabs::after {
    display: none;
}

.category-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    transition: none;
    flex-shrink: 0;
}

.category-btn.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

#allCategoriesBtn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

#allCategoriesBtn .btn-icon {
    display: none;
}

#allCategoriesBtn .btn-text {
    display: inline;
}

.widget-section {
    margin-bottom: 35px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

/* Practice Widget Header */
.practice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.practice-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.4));
    animation: practiceFloat 3s ease-in-out infinite;
}

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

/* Top X Content Header */
.top-x-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trophy-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    animation: trophyShine 2s ease-in-out infinite;
}

@keyframes trophyShine {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.6));
    }
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.widget-title {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.widget-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 20px;
}

.widget-grid.landscape {
    grid-template-columns: repeat(4, 1fr);
}

.widget-grid.portrait {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.widget-grid.square {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

.content-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
}

.content-card:hover {
    transform: translateY(-8px);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a2e;
}

/* Skeleton overlay for image loading */
.skeleton-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 1;
    border-radius: 8px;
}

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

.card-image-wrapper.loaded .skeleton-overlay {
    display: none;
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #000000;
    display: block;
    transition: transform 0.3s ease, opacity 0.4s ease;
    opacity: 0;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.card-image.loaded {
    opacity: 1;
}

.content-card:hover .card-image {
    transform: scale(1.05);
}

.portrait .card-image {
    aspect-ratio: 2/3;
    background: #000000;
    border-radius: 8px;
}

.square .card-image {
    aspect-ratio: 1/1;
    background: #000000;
    border-radius: 8px;
}

.landscape .card-image {
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 8px;
}

.card-content {
    padding: 10px 4px;
    background: transparent;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.card-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.lock-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lock-icon:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    animation: badgePulse 2s ease-in-out infinite;
    display: inline-block;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Top-right badge variant for LIVE and UPCOMING - slim and small */
.badge-top-right {
    top: 6px;
    right: 6px;
    bottom: auto;
    left: auto;
    transform: none;
    padding: 2px 8px;
    font-size: 8px;
    letter-spacing: 0.2px;
    border-radius: 3px;
    white-space: nowrap;
    display: inline-block;
    max-width: none;
    width: auto;
    min-width: fit-content;
    height: 14px;
    line-height: 10px;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.5);
    }
}

.watch-now-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 36px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.watch-now-btn{ /* hover removed */
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Credits Modal - Ultra Simple Design */
.credits-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.credits-modal-content {
    background: rgba(20, 20, 30, 0.95);
    margin: 15% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
}

.credits-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
    z-index: 10;
}

.credits-close:hover {
    color: #fff;
}

.credits-body {
    padding: 35px 25px;
    text-align: center;
}

.credits-logo {
    height: 60px;
    width: 60px;
    margin: 0 auto 15px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.credits-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.credits-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credits-line {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.credits-line strong {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    font-weight: 500;
}

/* Captcha Modal - Simple & Clean Design */
.captcha-fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

/* When modal is shown */
.captcha-fullscreen-modal[style*="display: block"],
.captcha-fullscreen-modal[style*="display: flex"] {
    display: flex !important;
}

.captcha-fullscreen-overlay {
    display: none;
}

.captcha-fullscreen-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    margin: 0 auto;
}

.captcha-fullscreen-header {
    text-align: center;
    margin-bottom: 30px;
}

.captcha-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #444;
}

.captcha-icon-wrapper i {
    font-size: 40px;
    color: #667eea;
}

.captcha-fullscreen-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.captcha-fullscreen-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.captcha-fullscreen-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Shimmer Loader for Captcha */
.captcha-shimmer-loader {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background: #222;
    border-radius: 8px;
    border: 1px solid #333;
}

.shimmer-box {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    background: #2a2a2a;
}

.shimmer-text {
    width: 100%;
    height: 16px;
    border-radius: 4px;
    background: #2a2a2a;
}

.shimmer-text.short {
    width: 60%;
}

#captchaWidget {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .captcha-fullscreen-content {
        width: 85%;
        padding: 35px 25px;
    }
    
    .captcha-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }
    
    .captcha-icon-wrapper i {
        font-size: 36px;
    }
    
    .captcha-fullscreen-header {
        margin-bottom: 25px;
    }
    
    .captcha-fullscreen-header h2 {
        font-size: 24px;
    }
    
    .captcha-fullscreen-header p {
        font-size: 14px;
    }
    
    .captcha-shimmer-loader {
        padding: 25px 20px;
    }
    
    .shimmer-box {
        height: 130px;
    }
    
    .captcha-fullscreen-body {
        min-height: 180px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .captcha-fullscreen-content {
        width: 90%;
        padding: 30px 20px;
    }
    
    .captcha-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .captcha-icon-wrapper i {
        font-size: 30px;
    }
    
    .captcha-fullscreen-header {
        margin-bottom: 20px;
    }
    
    .captcha-fullscreen-header h2 {
        font-size: 22px;
    }
    
    .captcha-fullscreen-header p {
        font-size: 13px;
    }
    
    .captcha-shimmer-loader {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .shimmer-box {
        height: 110px;
    }
    
    .shimmer-text {
        height: 14px;
    }
    
    .captcha-fullscreen-body {
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .credits-modal-content {
        width: 95%;
        margin: 15% auto;
    }
    
    .credits-body {
        padding: 40px 25px;
    }
    
    .credits-logo {
        height: 70px;
        width: 70px;
        margin-bottom: 25px;
    }
    
    .credits-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .credits-line {
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .credits-line strong {
        font-size: 11px;
    }
    
    .credits-close {
        top: 15px;
        right: 20px;
        font-size: 28px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 600;
}

.close {
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    line-height: 1;
}

.close{ /* hover removed */
    color: #fff;
    transform: rotate(90deg);
}

.category-list {
    padding: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 4px 0;
}

.category-item{ /* hover removed */
    background: rgba(255, 255, 255, 0.08);
}

.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.05);
}

.category-name {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.category-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.breadcrumb-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.hero-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hero Banner Section */
.hero-banner-section {
    margin-bottom: 40px;
}

.hero-banner-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: visible;
    background: transparent;
    padding: 0 80px;
    box-sizing: border-box;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    cursor: grab;
    user-select: none;
}

.hero-slider:active {
    cursor: grabbing;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 85%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    background: #1a1a2e;
}

/* Hero skeleton overlay */
.hero-skeleton-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}

.hero-slide.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.hero-slide.prev {
    transform: translate(-120%, -50%) scale(0.75);
    opacity: 0.5;
    z-index: 2;
}

.hero-slide.next {
    transform: translate(20%, -50%) scale(0.75);
    opacity: 0.5;
    z-index: 2;
}

.hero-image[style*="opacity: 1"] {
    opacity: 1;
}

.hero-image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-image-loader .spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    display: none;
}

.hero-description {
    display: none;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.hero-watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.hero-watch-btn i {
    font-size: 14px;
}

.hero-dots {
    display: none !important;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-lock {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Hero Banner Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 20px 30px;
        max-width: 100%;
    }
    
    .category-tabs {
        padding: 0 30px;
    }
    
    .hero-banner-container {
        height: 400px;
        padding: 0 60px;
    }
    
    .hero-slide {
        width: 75%;
        height: 90%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-overlay {
        padding: 25px 20px;
    }
    
    .slider-track .content-card,
    .slider-track .skeleton-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .slider-track.portrait .content-card,
    .slider-track.portrait .skeleton-card {
        flex: 0 0 180px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .category-tabs {
        padding: 0 20px;
        margin-bottom: 25px;
    }
    
    .hero-banner-container {
        height: 450px;
        border-radius: 12px;
        padding: 0 20px;
    }
    
    .hero-slide {
        width: 85%;
        height: 95%;
    }
    
    .hero-slide.prev,
    .hero-slide.next {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.3;
    }
    
    .hero-slide.prev {
        transform: translate(-110%, -50%) scale(0.7);
    }
    
    .hero-slide.next {
        transform: translate(10%, -50%) scale(0.7);
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .hero-overlay {
        padding: 25px 20px;
        border-radius: 0 0 12px 12px;
    }
    
    .hero-watch-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 24px;
    }
    
    .hero-lock {
        top: 15px;
        left: 15px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-banner-container {
        height: 350px;
        border-radius: 10px;
        padding: 0 10px;
    }
    
    .hero-slide {
        width: 85%;
        height: 90%;
    }
    
    .hero-slide.prev,
    .hero-slide.next {
        opacity: 0.4;
        pointer-events: none;
    }
    
    .hero-slide.prev {
        transform: translate(-95%, -50%) scale(0.65);
    }
    
    .hero-slide.next {
        transform: translate(-5%, -50%) scale(0.65);
    }
    
    .hero-image {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-bottom: 16px;
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    .hero-overlay {
        padding: 20px 15px;
        border-radius: 0 0 10px 10px;
    }
    
    .hero-watch-btn {
        padding: 10px 20px;
        font-size: 13px;
        gap: 8px;
    }
    
    .hero-watch-btn i {
        font-size: 12px;
    }
    
    .hero-dots {
        bottom: 12px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 6px;
        height: 6px;
    }
    
    .hero-dot.active {
        width: 20px;
    }
    
    .hero-lock {
        top: 12px;
        left: 12px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

.square .content-card {
    position: relative;
}

.square .watch-now-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.numbered-card {
    position: relative;
}

.card-number {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 5;
    font-family: 'Arial Black', sans-serif;
    line-height: 1;
    pointer-events: none;
}

.numbered-card .card-content {
    position: relative;
    z-index: 10;
}

/* Responsive card numbers */
@media (max-width: 768px) {
    .card-number {
        font-size: 60px;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .card-number {
        font-size: 48px;
        bottom: 8px;
        right: 8px;
    }
}

.upgrade-overlay {
    display: none !important;
}

.upgrade-overlay p {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 500;
}

.upgrade-overlay p:first-child {
    font-weight: 600;
}

.upgrade-overlay button {
    padding: 10px 24px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.upgrade-overlay button{ /* hover removed */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .nav-left {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    .logo-image {
        height: 45px;
        width: 45px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .nav-center {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-bar {
        padding: 11px 16px 11px 42px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .search-bar:focus {
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12), 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .search-icon {
        left: 14px;
        font-size: 14px;
    }
    
    .search-placeholder {
        left: 42px;
        font-size: 13px;
    }
    
    .placeholder-animated {
        height: 18px;
    }
    
    .placeholder-animated span {
        height: 18px;
        line-height: 18px;
        font-size: 13px;
    }
    
    /* Show icon, hide text on mobile */
    #allCategoriesBtn .btn-icon {
        display: inline;
    }
    
    #allCategoriesBtn .btn-text {
        display: none;
    }
    
    .container {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .category-tabs {
        padding: 0 20px;
        margin-bottom: 25px;
    }
    
    .category-scroll-wrapper {
        gap: 8px;
    }
    
    .category-scroll-wrapper #categoryButtons {
        gap: 8px;
    }
    
    .category-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .widget-grid.landscape {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .widget-grid.portrait {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .widget-grid.square {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .widget-title {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .card-meta {
        font-size: 11px;
    }
    
    .category-scroll-arrow {
        display: flex;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .slider-wrapper {
        padding: 0;
    }
    
    .slider-track {
        gap: 14px;
    }
    
    .slider-track .content-card,
    .slider-track .skeleton-card {
        flex: 0 0 240px;
        min-width: 240px;
    }
    
    .slider-track.portrait .content-card,
    .slider-track.portrait .skeleton-card {
        flex: 0 0 150px;
        min-width: 150px;
    }
    
    .slider-track.square .content-card,
    .slider-track.square .skeleton-card {
        flex: 0 0 270px;
        min-width: 270px;
    }
}


/* Responsive Design */
@media (max-width: 1200px) {
    .widget-grid.landscape {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .widget-grid.square {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .teacher-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 14px;
        padding: 16px 24px;
    }
    
    .nav-left {
        width: 100%;
        justify-content: center;
    }
    
    .logo-image {
        height: 52px;
        width: 52px;
        border-radius: 15px;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .nav-center {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .search-bar {
        padding: 14px 20px 14px 50px;
        font-size: 14px;
        border-radius: 15px;
    }
    
    .search-icon {
        left: 18px;
        font-size: 16px;
    }
    
    .search-placeholder {
        left: 50px;
        font-size: 14px;
    }
    
    .container {
        padding: 18px 20px;
    }
    
    .widget-grid.landscape {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 14px;
    }
    
    .widget-grid.portrait {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 14px;
    }
    
    .widget-grid.square {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .widget-title {
        font-size: 22px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-meta {
        font-size: 12px;
    }
    
    .card-content {
        padding: 12px 4px;
    }
    
    .card-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 16px 20px;
        gap: 16px;
        flex-direction: column;
    }
    
    .nav-left {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }
    
    .logo-image {
        height: 48px;
        width: 48px;
        border-radius: 14px;
    }
    
    .brand-name {
        font-size: 22px;
    }
    
    .nav-center {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-bar {
        padding: 13px 18px 13px 48px;
        font-size: 14px;
        border-radius: 14px;
    }
    
    .search-bar:focus {
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12), 0 4px 16px rgba(102, 126, 234, 0.2);
        transform: translateY(-1px);
    }
    
    .search-icon {
        left: 16px;
        font-size: 15px;
    }
    
    .search-placeholder {
        left: 48px;
        font-size: 14px;
    }
    
    .placeholder-animated {
        height: 20px;
    }
    
    .placeholder-animated span {
        height: 20px;
        line-height: 20px;
        font-size: 14px;
    }
    
    .container {
        padding: 15px 15px;
        max-width: 100%;
    }
    
    .category-tabs {
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .category-scroll-wrapper {
        gap: 8px;
        padding: 6px 0 10px 0;
    }
    
    .category-scroll-wrapper #categoryButtons {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .category-scroll-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .widget-section {
        margin-bottom: 25px;
    }
    
    .widget-grid.landscape {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 12px;
    }
    
    .widget-grid.portrait {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .widget-title {
        font-size: 18px;
    }
    
    .card-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .card-meta {
        font-size: 11px;
    }
    
    .badge {
        font-size: 7px;
        padding: 2px 6px;
        bottom: 5px;
        max-width: 85%;
    }
    
    .badge-top-right {
        top: 4px;
        right: 4px;
        padding: 1px 5px;
        font-size: 6px;
        white-space: nowrap;
        display: inline-block;
        width: auto;
        height: 9px;
        line-height: 7px;
    }
    
    .card-content {
        padding: 10px 4px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 18px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .slider-wrapper {
        padding: 0;
    }
    
    .slider-track {
        gap: 12px;
    }
    
    .slider-track .content-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .slider-track.portrait .content-card {
        flex: 0 0 180px;
        min-width: 180px;
    }
    
    .slider-track.square .content-card {
        flex: 0 0 320px;
        min-width: 320px;
    }
}


/* Loading Skeleton with Shimmer Effect */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

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

.skeleton-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    overflow: visible;
    border: none;
    position: relative;
    flex: 0 0 280px;
    min-width: 280px;
}

.slider-track.portrait .skeleton-card {
    flex: 0 0 175px;
    min-width: 175px;
}

.slider-track.square .skeleton-card {
    flex: 0 0 380px;
    min-width: 380px;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.08);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.skeleton-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmerSlide 1.5s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.skeleton-text {
    height: 42px;
    margin-bottom: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    animation-delay: 0.1s;
}

.skeleton-text-short {
    width: 60%;
    height: 18px;
    margin: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    animation-delay: 0.2s;
}

/* Teacher Skeleton */
.skeleton-teacher-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.skeleton-teacher-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-teacher-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-teacher-name {
    height: 16px;
    width: 80%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    animation-delay: 0.1s;
}

.skeleton-teacher-role {
    height: 12px;
    width: 50%;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    animation-delay: 0.2s;
}

/* Smooth transitions */
.content-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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

.content-card:nth-child(1) { animation-delay: 0.05s; }
.content-card:nth-child(2) { animation-delay: 0.1s; }
.content-card:nth-child(3) { animation-delay: 0.15s; }
.content-card:nth-child(4) { animation-delay: 0.2s; }
.content-card:nth-child(5) { animation-delay: 0.25s; }
.content-card:nth-child(6) { animation-delay: 0.3s; }
.content-card:nth-child(7) { animation-delay: 0.35s; }
.content-card:nth-child(8) { animation-delay: 0.4s; }

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb{ /* hover removed */
    background: rgba(255, 255, 255, 0.25);
}

/* Horizontal Slider Styles */
.slider-container {
    position: relative;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.slider-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    cursor: grab;
    user-select: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track:active {
    cursor: grabbing;
}

.slider-track .content-card {
    flex: 0 0 280px;
    min-width: 280px;
}

.slider-track.portrait .content-card {
    flex: 0 0 175px;
    min-width: 175px;
}

.slider-track.square .content-card {
    flex: 0 0 380px;
    min-width: 380px;
}

.slider-arrow {
    display: none;
}

.slider-indicators {
    display: none;
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 50px 0 0;
    }
    
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .slider-track .content-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .slider-track.portrait .content-card {
        flex: 0 0 190px;
        min-width: 190px;
    }
    
    .slider-track.square .content-card {
        flex: 0 0 340px;
        min-width: 340px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        padding: 0;
    }
    
    .slider-track {
        gap: 12px;
    }
    
    .slider-track .content-card,
    .slider-track .skeleton-card {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    .slider-track.portrait .content-card,
    .slider-track.portrait .skeleton-card {
        flex: 0 0 125px;
        min-width: 125px;
    }
    
    .slider-track.square .content-card,
    .slider-track.square .skeleton-card {
        flex: 0 0 225px;
        min-width: 225px;
    }
    
    
    .card-title {
        font-size: 11px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .card-meta {
        font-size: 9px;
    }
    
    .card-content {
        padding: 7px 2px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .navbar {
        padding: 8px 10px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .nav-left {
        gap: 10px;
    }
    
    .upgrade-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .pro-badge {
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .container {
        padding: 12px 12px;
        max-width: 100%;
    }
    
    .category-tabs {
        padding: 0 12px;
    }
    
    .category-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .category-scroll-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .widget-title {
        font-size: 16px;
    }
    
    .widget-section {
        margin-bottom: 20px;
    }
    
    .widget-grid.landscape {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .widget-grid.portrait {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }
    
    .card-title {
        font-size: 10px;
    }
    
    .card-meta {
        font-size: 8px;
    }
    
    .card-content {
        padding: 6px 2px;
    }
    
    .slider-wrapper {
        padding: 0;
    }
    
    .slider-track {
        gap: 10px;
    }
    
    .slider-track .content-card,
    .slider-track .skeleton-card {
        flex: 0 0 170px;
        min-width: 170px;
    }
    
    .slider-track.portrait .content-card,
    .slider-track.portrait .skeleton-card {
        flex: 0 0 106px;
        min-width: 106px;
    }
    
    .slider-track.square .content-card,
    .slider-track.square .skeleton-card {
        flex: 0 0 190px;
        min-width: 190px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .navbar {
        flex-direction: row;
        padding: 8px 15px;
    }
    
    .nav-left {
        width: auto;
        flex: 0 0 auto;
    }
    
    .nav-center {
        flex: 1;
        max-width: 400px;
    }
    
    .search-bar {
        padding: 8px 14px;
    }
}

/* Back button styling - permanently hidden */
#backBtn {
    display: none !important;
}

/* Back button styling */
.category-back-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-back-btn{ /* hover removed */
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.category-back-btn i {
    font-size: 12px;
}

/* Teacher Widget Styles - Playlist Design */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 10px 0;
}

@media (min-width: 1400px) {
    .teacher-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.teacher-card {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.teacher-card{ /* hover removed */
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.teacher-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.teacher-card:hover .teacher-image-wrapper {
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.teacher-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teacher-info {
    flex: 1;
    min-width: 0;
}

.teacher-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.teacher-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Back Button Style */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: none;
}

@media (max-width: 1400px) {
    .teacher-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .teacher-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .teacher-card {
        padding: 10px;
        gap: 12px;
    }
    
    .teacher-image-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .teacher-name {
        font-size: 14px;
    }
    
    .teacher-role {
        font-size: 11px;
    }
    
    .teacher-content-container {
        padding: 15px 15px;
    }
    
    .teacher-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .teacher-content-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .teacher-image-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .teacher-name {
        font-size: 13px;
    }
    
    .teacher-role {
        font-size: 10px;
    }
    
    .teacher-content-title {
        font-size: 20px;
    }
    
    .back-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/* Shimmer Effect for Images */
.card-image {
    position: relative;
    background: #1a1a2e;
    filter: blur(10px);
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    z-index: 1;
}

/* Blue Fade-Up Effect on Image Load */
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(102, 126, 234, 0.6) 0%,
        rgba(102, 126, 234, 0.3) 30%,
        transparent 60%
    );
    opacity: 1;
    transition: opacity 0.6s ease-out;
    z-index: 2;
    pointer-events: none;
}

/* Loaded state - blur to sharp + zoom out + fade */
.card-image.loaded {
    filter: blur(0);
    transform: scale(1);
}

.card-image.loaded::before {
    display: none;
}

.card-image.loaded::after {
    opacity: 0;
}

/* Skeleton Card Styles */
.skeleton-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

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

.skeleton-image {
    width: 100%;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(102, 126, 234, 0.15) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.skeleton-image.landscape {
    aspect-ratio: 16/9;
}

.skeleton-image.portrait {
    aspect-ratio: 2/3;
}

.skeleton-image.square {
    aspect-ratio: 1/1;
}

.skeleton-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmerSlide 1.5s ease-in-out infinite;
}

.skeleton-content {
    padding: 10px 4px;
}

.skeleton-text {
    height: 16px;
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(102, 126, 234, 0.15) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    margin-bottom: 8px;
}

.skeleton-text-short {
    height: 14px;
    width: 60%;
    border-radius: 7px;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(102, 126, 234, 0.15) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    animation-delay: 0.1s;
}

.skeleton-title {
    height: 28px;
    width: 200px;
    border-radius: 8px;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(102, 126, 234, 0.15) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
}

/* Shimmer Loader Components */
.shimmer-loader-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.shimmer-box-large {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(102, 126, 234, 0.15) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.shimmer-box-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmerSlide 1.5s ease-in-out infinite;
}

.shimmer-text-line {
    width: 100%;
    height: 20px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        rgba(102, 126, 234, 0.05) 0%,
        rgba(102, 126, 234, 0.15) 50%,
        rgba(102, 126, 234, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    margin-bottom: 12px;
}

.shimmer-text-line.short {
    width: 60%;
    animation-delay: 0.1s;
}

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

/* Responsive Skeleton Cards */
@media (max-width: 768px) {
    .skeleton-title {
        height: 24px;
        width: 150px;
    }
    
    .skeleton-text {
        height: 14px;
    }
    
    .skeleton-text-short {
        height: 12px;
    }
}

@media (max-width: 480px) {
    .skeleton-title {
        height: 20px;
        width: 120px;
    }
    
    .skeleton-text {
        height: 12px;
    }
    
    .skeleton-text-short {
        height: 10px;
    }
}

/* Teacher image shimmer */
.teacher-image-wrapper {
    position: relative;
    background: #1a1a2e;
}

.teacher-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
    z-index: 1;
    border-radius: 10px;
}

.teacher-image-wrapper.loaded::before {
    display: none;
}

.teacher-image {
    position: relative;
    z-index: 2;
}

/* Lock icon mobile responsiveness */
@media (max-width: 768px) {
    .lock-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .lock-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        top: 8px;
        left: 8px;
    }
}

/* Practice Widget Styles - Special UI */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.practice-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.practice-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.practice-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.practice-icon-wrapper {
    flex-shrink: 0;
}

.practice-dpp-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.practice-dpp-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.dpp-text {
    font-size: 18px;
    font-weight: 800;
    color: #FFC107;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    position: relative;
    z-index: 1;
}

.practice-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.practice-subject {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.practice-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.practice-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.practice-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

.practice-btn.resume {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

.practice-btn.resume:hover {
    background: rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.5);
}

.practice-btn.attempt {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.practice-btn.attempt:hover {
    background: rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.5);
}

.practice-btn i {
    font-size: 12px;
}

/* Practice Skeleton */
.skeleton-practice-card {
    opacity: 1;
}

.skeleton-practice-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(255, 193, 7, 0.05) 0%,
        rgba(255, 193, 7, 0.15) 50%,
        rgba(255, 193, 7, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 1.5s ease-in-out infinite;
}

/* Responsive Practice Grid */
@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .practice-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .practice-card {
        padding: 16px;
    }
    
    .practice-card-inner {
        gap: 16px;
    }
    
    .practice-dpp-icon {
        width: 56px;
        height: 56px;
    }
    
    .dpp-text {
        font-size: 16px;
    }
    
    .practice-title {
        font-size: 15px;
    }
    
    .practice-subject {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .practice-card {
        padding: 14px;
    }
    
    .practice-card-inner {
        gap: 14px;
    }
    
    .practice-dpp-icon {
        width: 48px;
        height: 48px;
    }
    
    .dpp-text {
        font-size: 14px;
    }
    
    .practice-title {
        font-size: 14px;
    }
    
    .practice-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 50px;
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .developer-credit {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer .dev-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .footer .developer-credit {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    .footer .dev-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .footer .developer-credit {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .footer .dev-name {
        font-size: 12px;
    }
}

