* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-dark: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border-color: #475569;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --glow-color: rgba(99, 102, 241, 0.4);
}

/* Modern Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--glow-color); }
    50% { box-shadow: 0 0 30px var(--glow-color), 0 0 40px var(--glow-color); }
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1e293b 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Banner Alanları - Modern Style */
.banner {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.banner:hover img {
    transform: scale(1.02);
}

.banner-top {
    width: 100%;
    max-width: 100%; /* Taşma engelle */
    height: 60px;
    min-height: 60px;
    margin-bottom: 8px;
    flex-shrink: 0;
    animation: slideInLeft 0.6s ease-out;
    overflow: hidden;
    box-sizing: border-box; /* Padding dahil */
}

.banner-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%; /* Taşma engelle */
}

.banner-bottom {
    width: 100%;
    max-width: 100%; /* Taşma engelle */
    height: 60px;
    min-height: 60px;
    margin-top: 8px;
    flex-shrink: 0;
    animation: slideInRight 0.6s ease-out;
}

.banner-left {
    width: 120px;
    height: 100%;
    margin-right: 8px;
    flex-shrink: 0;
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.banner-right {
    width: 120px;
    height: 100%;
    margin-left: 8px;
    flex-shrink: 0;
    animation: slideInRight 0.6s ease-out 0.2s both;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Kayan Yazı Banner - Artık kullanılmıyor, Header'da */

/* Header - Kayan Yazı Banner */
.header {
    background: linear-gradient(90deg, #dc2626, #ea580c, #dc2626);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    padding: 0.6rem 0;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    flex-shrink: 0;
    height: 50px;
    position: relative;
    animation: fadeIn 0.4s ease-out;
    overflow: hidden;
}

.header::before {
    display: none;
}

.header .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.header .marquee-content a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.header .marquee-content a:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.header-info a {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.header-info a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.header-info a:hover::before {
    left: 100%;
}

.header-info a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.channel-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(51, 65, 85, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.channel-count:hover {
    background: rgba(51, 65, 85, 0.8);
    border-color: var(--primary-color);
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    gap: 8px;
    padding: 0;
    position: relative;
}

/* Sidebar - Modern Glass Effect */
.sidebar {
    width: 300px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-right: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    animation: slideInLeft 0.6s ease-out 0.4s both;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}

/* Search Box - Modern Style */
.search-box {
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    flex-shrink: 0;
}

.search-box i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.search-box:focus-within i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.search-box input {
    flex: 1;
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.6rem;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-box input:focus {
    border-color: var(--primary-color);
    background: rgba(51, 65, 85, 0.9);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

/* Filter Tabs - Modern Pills */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.4);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    flex-shrink: 0;
}

.filter-btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
    background: rgba(51, 65, 85, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn i {
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-color);
    animation: glow 2s ease-in-out infinite;
}

.filter-btn.active::before {
    opacity: 1;
}

/* Channel List - Smooth Scroll */
.channel-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem;
    scroll-behavior: smooth;
}

/* Custom Scrollbar - Modern */
.channel-list::-webkit-scrollbar {
    width: 6px;
}

.channel-list::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.4);
}

.channel-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: all 0.3s;
}

.channel-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

/* Channel Item - Card Style */
.channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(51, 65, 85, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.channel-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.channel-item:hover {
    background: rgba(51, 65, 85, 0.7);
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
}

.channel-item:hover::before {
    transform: scaleY(1);
}

.channel-item.active {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2), 
        rgba(139, 92, 246, 0.2)
    );
    border-color: var(--primary-color);
    box-shadow: 0 4px 24px var(--glow-color);
}

.channel-item.active::before {
    transform: scaleY(1);
}

.channel-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.channel-item:hover .channel-logo {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.channel-details {
    flex: 1;
    min-width: 0;
}

.channel-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.channel-item:hover .channel-name {
    color: var(--primary-color);
}

.channel-group {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Player Section - Modern Glass */
.player-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: fadeIn 0.6s ease-out 0.5s both;
    position: relative;
}

.player-wrapper {
    flex: 1;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
    z-index: 1;
}

/* Player Placeholder - Modern */
.player-placeholder {
    text-align: center;
    color: var(--text-secondary);
    animation: fadeIn 0.6s ease-out;
}

.player-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--glow-color));
}

.player-placeholder h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.player-placeholder p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Video Player - Modern Style */
#videoPlayer {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
    overflow: hidden;
}

.video-js {
    background: rgba(15, 23, 42, 0.9);
}

.video-js .vjs-big-play-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
    box-shadow: 0 8px 32px var(--glow-color);
    transition: all 0.3s ease;
}

.video-js .vjs-big-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 48px var(--glow-color);
}

/* Now Playing - Modern Bar */
.now-playing {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    height: 70px;
    animation: slideInRight 0.4s ease-out;
    border-radius: 12px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.now-playing-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

#channelLogo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px var(--glow-color);
}

.channel-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.channel-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Fullscreen Button - Modern */
.fullscreen-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--glow-color);
}

.fullscreen-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px var(--glow-color);
}

/* Loading - Skeleton */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 1s ease-in-out infinite;
}

/* Toast Notifications - Modern */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
    border: 1px solid rgba(99, 102, 241, 0.3);
    max-width: 400px;
}

.toast.success {
    border-left: 4px solid var(--success-color);
}

.toast.error {
    border-left: 4px solid var(--danger-color);
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .banner-left,
    .banner-right {
        width: 100px;
    }
    
    .sidebar {
        width: 260px;
    }
}

@media (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        max-height: none;
        overflow-y: auto;
    }
    
    .container {
        max-height: none;
        overflow-y: auto;
        overflow-x: hidden; /* Yatay scroll engelle */
        padding: 0;
        gap: 0.5rem;
        width: 100vw; /* Tam viewport genişliği */
        max-width: 100vw;
    }
    
    .header {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        height: auto;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .header-info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .header-info a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Banner'ları gizle - mobilde */
    .banner-left,
    .banner-right {
        display: none;
    }
    
    .banner-top,
    .banner-bottom {
        height: 70px; /* Biraz daha yüksek */
        border-radius: 0; /* Köşe radius'u kaldır */
        margin: 0;
        width: 100vw; /* Tam viewport genişliği */
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .banner-top img,
    .banner-bottom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }
    
    .main-content {
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden; /* Yatay scroll engelle */
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .sidebar {
        width: 100%;
        max-height: 300px;
        order: 2;
        border-right: none;
        border-top: 1px solid rgba(99, 102, 241, 0.2);
        border-radius: 12px;
    }
    
    .player-section {
        order: 1;
        min-height: 250px;
    }
    
    .player-wrapper {
        border-radius: 12px;
    }
    
    .player-placeholder i {
        font-size: 3rem;
    }
    
    .player-placeholder h2 {
        font-size: 1.3rem;
    }
    
    .now-playing {
        padding: 0.5rem 0.75rem;
        height: auto;
    }
    
    #channelLogo {
        width: 40px;
        height: 40px;
    }
    
    .channel-info h3 {
        font-size: 0.95rem;
    }
    
    .channel-info p {
        font-size: 0.75rem;
    }
    
    .filter-tabs {
        padding: 0.5rem;
        gap: 0.4rem;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .channel-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .channel-logo {
        width: 40px;
        height: 40px;
    }
    
    .channel-name {
        font-size: 0.85rem;
    }
    
    .channel-group {
        font-size: 0.7rem;
    }
    
    /* Touch-friendly sizing */
    .channel-item:active {
        transform: scale(0.98);
    }
    
    .filter-btn:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .logo i {
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .header-info a {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .channel-count {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .banner-top,
    .banner-bottom {
        height: 60px; /* Çok küçük cihazlarda */
        min-height: 60px;
    }
    
    .banner-top img,
    .banner-bottom img {
        object-fit: contain; /* Tüm görsel görünsün */
    }
    
    .search-box {
        padding: 0.75rem;
    }
    
    .search-box input {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* Landscape Orientation - Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .sidebar {
        max-height: 200px;
    }
    
    .player-section {
        min-height: 180px;
    }
}

/* Dark Mode Support (Auto) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #000000;
        --bg-secondary: #1a1a1a;
        --bg-tertiary: #2a2a2a;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .banner,
    .header,
    .sidebar,
    .channel-item,
    .player-wrapper {
        border-width: 2px;
    }
}
/* Logo placeholder stil */
.channel-logo-placeholder {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 24px;
    transition: all 0.3s ease;
}
