* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    background-image: 
        radial-gradient(at 20% 30%, rgba(91, 141, 238, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(168, 85, 247, 0.08) 0px, transparent 50%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4%;
    max-width: 2000px;
    margin: 0 auto;
}

.left-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(91, 141, 238, 0.5));
    transition: filter 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 20px rgba(91, 141, 238, 0.8));
}

.logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 50%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 30px rgba(91, 141, 238, 0.5);
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: lowercase;
    line-height: 1;
    margin-top: 2px;
}

/* Browse Button */
.browse-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    white-space: nowrap;
}

.browse-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(91, 141, 238, 0.5);
    transform: scale(1.05);
}

.browse-btn.active {
    background: rgba(91, 141, 238, 0.8);
    border-color: rgba(91, 141, 238, 0.8);
}

.arrow-down {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.browse-btn.active .arrow-down {
    transform: rotate(180deg);
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #5B8DEE, #A855F7);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(91, 141, 238, 0.5);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 100%;
}

.nav-link.active {
    color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
    padding-left: 10px;
    border-bottom-color: rgba(91, 141, 238, 0.5);
}

.mobile-menu .nav-link::before {
    display: none;
}

.mobile-menu .nav-link.active {
    color: #5B8DEE;
    border-bottom-color: #5B8DEE;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.search-input.active {
    width: 250px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(91, 141, 238, 0.5);
    box-shadow: 0 4px 20px rgba(91, 141, 238, 0.2);
    opacity: 1;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-icon {
    cursor: pointer;
    font-size: 1.3rem;
    position: absolute;
    right: 8px;
    transition: transform 0.3s ease;
}

.search-icon:hover {
    transform: scale(1.2);
}

/* Main Content */
.mylist-main {
    padding-top: 70px;
    min-height: 100vh;
}

/* Hero Section */
.mylist-hero {
    padding: 4rem 4% 2rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-bottom: 1px solid rgba(91, 141, 238, 0.2);
    position: relative;
}

.mylist-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5B8DEE, #A855F7, transparent);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(91, 141, 238, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #999;
    font-weight: 500;
}

/* Content Section */
.mylist-content {
    padding: 3rem 4% 4rem;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 50vh;
}

.empty-state.hidden {
    display: none;
}

.empty-icon {
    margin-bottom: 2rem;
    opacity: 0.3;
}

.empty-icon svg {
    stroke: #5B8DEE;
}

.empty-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.empty-description {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.empty-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(91, 141, 238, 0.3);
}

.empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(91, 141, 238, 0.5);
}

/* Movies Grid */
.mylist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.mylist-grid.hidden {
    display: none;
}

.mylist-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mylist-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(91, 141, 238, 0.4);
    border-color: rgba(91, 141, 238, 0.5);
}

.mylist-poster-container {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
}

.mylist-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    background: #1a1a1a;
    z-index: 1;
}

.mylist-poster[src] {
    opacity: 1;
}

.mylist-item:hover .mylist-poster {
    transform: scale(1.1);
}

.mylist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.mylist-item:hover .mylist-overlay {
    opacity: 1;
}

.mylist-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.3;
}

.mylist-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.mylist-rating {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
}

.mylist-year {
    color: #999;
    font-size: 0.85rem;
}

.mylist-actions {
    display: flex;
    gap: 0.5rem;
}

.mylist-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-play {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
}

.btn-play:hover {
    background: #fff;
    transform: scale(1.05);
}

.btn-remove {
    background: rgba(91, 141, 238, 0.8);
    color: #fff;
}

.btn-remove:hover {
    background: rgba(91, 141, 238, 1);
    transform: scale(1.05);
}

.mylist-btn svg {
    width: 16px;
    height: 16px;
}

/* Remove Button (Top Right) */
.remove-btn-top {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.mylist-item:hover .remove-btn-top {
    opacity: 1;
}

.remove-btn-top:hover {
    background: rgba(91, 141, 238, 0.9);
    border-color: rgba(91, 141, 238, 0.8);
    transform: scale(1.1);
}

.remove-btn-top svg {
    width: 18px;
    height: 18px;
}

/* Footer */
footer {
    background: linear-gradient(to top, #000 0%, #0a0a0a 50%, #0f0f0f 100%);
    padding: 4rem 4% 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(91, 141, 238, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5B8DEE, #A855F7, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top - Logo & About */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(91, 141, 238, 0.6));
}

.footer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 50%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.footer-about {
    max-width: 600px;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Media Links */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.social-message {
    color: #999;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    border: 1px solid rgba(34, 158, 217, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
    border-color: rgba(34, 158, 217, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.5);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
}

.social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-link span {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.telegram-link {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 136, 204, 0.5);
    }
}

/* Footer Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5B8DEE, #A855F7);
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5B8DEE, #A855F7);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(91, 141, 238, 0.3);
}

.footer-link:hover::before {
    width: 30px;
}

/* Newsletter Section */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-description {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(91, 141, 238, 0.5);
    box-shadow: 0 0 0 3px rgba(91, 141, 238, 0.1);
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 100%);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(91, 141, 238, 0.4);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* Support Button */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #5B8DEE 0%, #A855F7 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(91, 141, 238, 0.3);
    position: relative;
    overflow: hidden;
    max-width: fit-content;
}

.support-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.support-btn:hover::before {
    width: 300px;
    height: 300px;
}

.support-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(91, 141, 238, 0.5);
}

.support-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.coffee-icon {
    animation: steam 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@keyframes steam {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(-2deg);
    }
    75% {
        transform: translateY(-2px) rotate(2deg);
    }
}

.support-btn:hover .coffee-icon {
    animation: steamHover 0.6s ease-in-out infinite;
}

@keyframes steamHover {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-4px) rotate(5deg) scale(1.1);
    }
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #808080;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: #808080;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #5B8DEE;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mylist-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .browse-btn {
        display: flex;
    }
    
    /* Hide browse text on mobile when search is active */
    .browse-btn.search-active {
        padding: 0.6rem;
        min-width: 40px;
        justify-content: center;
        font-size: 0;
    }
    
    .browse-btn.search-active .arrow-down {
        font-size: 0.8rem;
    }
    
    #desktopNav {
        display: none;
    }
    
    .search-input.active {
        width: 180px;
        padding: 0.6rem 2.5rem 0.6rem 1rem;
    }
    
    .search-icon {
        position: absolute;
        right: 10px;
        z-index: 1;
    }
    
    .header-content {
        padding: 1rem 3%;
    }
    
    .left-nav {
        gap: 1rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }
    
    .mylist-hero {
        padding: 3rem 5% 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .mylist-content {
        padding: 2rem 5% 3rem;
    }
    
    .mylist-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .empty-title {
        font-size: 1.5rem;
    }
    
    .empty-description {
        font-size: 1rem;
    }

    /* Footer Mobile Styles */
    footer {
        padding: 3rem 5% 2rem;
        margin-top: 3rem;
    }

    .footer-top {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-logo-image {
        width: 40px;
        height: 40px;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }

    .footer-logo-tagline {
        font-size: 0.6rem;
    }

    .footer-about {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        gap: 0.8rem;
    }

    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .support-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 1rem;
    }

    .legal-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mylist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
}
