/* Elemeği Homepage Styles */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Utility Classes for Mobile/Desktop Visibility */
/* Desktop only - hidden on mobile (max-width: 768px) */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Mobile only - hidden on desktop (min-width: 769px) */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

:root {
    --primary-green: #028702;
    --light-green: #e8f5e9;
    --lighter-green: #f1f8f4;
    --dark-green: #1b5e3f;
    --text-gray: #6c757d;
    --border-gray: #e0e0e0;
    --sidebar-width: 365px;
    --sidebar-font: 'Plus Jakarta Sans', sans-serif;
}

/* Main Layout */
.elemegi-layout {
    display: flex;
    min-height: 100vh;
}

/* Left Sidebar */
.elemegi-sidebar {
    width: var(--sidebar-width);
    background-color: #F7FBF7;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1000;
    border-right: 1px solid var(--border-gray);
    flex-shrink: 0;
    height: 100vh;
}

.sidebar-top {
    background-color: #F7FBF7;
    padding: 24px 32px 12px 40px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    width: 100%;
    min-height: 64px;
}

.sidebar-top-header {
    margin-bottom: 24px;
}

.sidebar-top-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 28px;
    padding: 0 12px;
    gap: 24px;
}

.sidebar-hamburger {
    width: 18px;
    height: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1A1A1A;
    cursor: pointer;
    border: 1.4px solid transparent;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.sidebar-logo-img {
    width: 117px;
    height: 28px;
    object-fit: contain;
}

.sidebar-nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    gap: 16px;
    border-radius: 8px;
    margin: 0;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    font-family: var(--sidebar-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
}

.sidebar-top .sidebar-nav-item {
    margin: 0;
}

.sidebar-nav-item:hover {
    background-color: var(--light-green);
    color: #333;
    text-decoration: none;
}

.sidebar-nav-item.active {
    background-color: var(--light-green);
    color: #1A1A1A;
    font-weight: 600;
}

.sidebar-nav-item i {
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-section {
    padding: 12px 32px 12px 40px;
    border-bottom: 1px solid var(--border-gray);
}

.category-section {
    border-bottom: none !important;
}

.sidebar-register-section {
    padding: 24px 32px 24px 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-register-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #1A1A1A;
    ;
    margin: 0;
    padding: 0;
}

.sidebar-register-btn {
    width: 138px;
    height: 36px;
    padding: 12px 16px;
    border: 1px solid #1A1A1A;
    border-radius: 56px;
    background-color: transparent;
    color: #1A1A1A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-sizing: border-box;
}

.sidebar-register-btn:hover {
    color: #1A1A1A;
    text-decoration: none;
}

.sidebar-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #1A1A1A;
    padding: 0 0 12px 0;
    margin: 0;
    height: 24px;
    letter-spacing: 0%;
}

.sidebar-user-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    gap: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.sidebar-user-item:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.sidebar-user-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-user-name {
    flex: 1;
    font-family: var(--sidebar-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff69b4;
    margin-left: 8px;
}

.sidebar-link-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    gap: 24px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-family: var(--sidebar-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    transition: background-color 0.2s;
}

.sidebar-link-item:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.sidebar-link-item.active {
    background-color: var(--light-green);
    color: #1A1A1A;
    font-weight: 600;
}

.sidebar-link-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.sidebar-more-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--primary-green);
    text-decoration: none;
    font-family: var(--sidebar-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    cursor: pointer;
}

.sidebar-more-link:hover {
    color: var(--dark-green);
    text-decoration: none;
}

.sidebar-more-link i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sidebar-more-link.expanded i {
    transform: rotate(180deg);
}

.category-hidden,
.follower-hidden {
    display: none;
}

.category-visible,
.follower-visible {
    display: flex;
}

/* Main Content Area */
.elemegi-main-content {
    flex: 1;
    min-height: 100vh;
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

/* Main Content Wrapper */
.elemegi-main-content-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* Top Header */
.elemegi-header {
    background-color: transparent;
    padding: 16px 0 0 0;
    position: relative;
    z-index: 100;
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 44px;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    width: 230px;
    height: 64px;
    border-radius: 8px;
    gap: 14px;
    opacity: 1;
    padding-top: 24px;
    padding-right: 32px;
    padding-bottom: 12px;
    padding-left: 40px;

}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-com {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.header-search {
    flex: 1;
    height: 44px;
    position: relative;
    max-width: 60%;
}

.header-search form {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-input {
    width: 100%;
    height: 44px;
    padding: 8px 4px 8px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 100px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.search-icon {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #E0EDE0;
    padding: 8px;
    box-sizing: border-box;
    border: 1.4px solid transparent;
}

.search-icon img {
    width: 17px;
    height: 17px;
    position: relative;
    border: 1.4px solid transparent;
    object-fit: contain;
}

.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: fit-content;
    height: 44px;
}

.header-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.header-link:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
}

.header-btn {
    background-color: #E5F0E5;
    color: #028702;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.header-btn:hover {
    background-color: var(--dark-green);
    color: #ffffff;
    text-decoration: none;
}

/* User Profile & Share Button in Header */
.btn-share-effort {
    width: 133px;
    height: 44px;
    border-radius: 56px;
    gap: 4px;
    padding: 12px 16px;
    border: 1px solid #028702;
    background: #ECF4EC;
    color: #028702;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.2s;
    box-sizing: border-box;
}


.btn-share-effort:hover {
    background: #e0ede0;
    color: #028702;
}

.header-profile-dropdown {
    position: relative;
    margin-left: 8px;
}

.header-profile-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.header-profile-menu:hover {
    background-color: #f8f9fa;
}

.profile-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1A1A1A;
    line-height: 1.2;
    white-space: nowrap;
}

.profile-email {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #707470;
    line-height: 1.2;
    white-space: nowrap;
}

.profile-dropdown-arrow {
    font-size: 12px;
    color: #1A1A1A;
    margin-left: 4px;
}

.profile-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 8px;
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid #E4E7E4;
}

.profile-dropdown-content.show {
    display: block;
}

.profile-dropdown-content a,
.profile-dropdown-content button {
    color: #1A1A1A;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none !important;
}

.profile-dropdown-content a:hover,
.profile-dropdown-content button:hover {
    background-color: #f8f9fa;
    color: #028702;
}

.btn-logout:focus {
    outline: none;
}

.header-btn img {
    width: 19px;
    height: 16px;
    object-fit: contain;
}


/* Slider/Banner Area */
.slider-banner-area {
    position: relative;
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.slider-banner-left {
    flex: 1.8;
    min-width: 0;
    height: clamp(240px, 20vw, 380px);
    background-color: #F4F4F4;
    border-radius: 12px;
    position: relative;
    /* Container for dots */
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    /* Focus borderını kaldırdık */
}

.slider-dot:focus {
    outline: none;
    box-shadow: none;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    background: #FFFFFF;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.slider-dot.active:focus {
    outline: none !important;
    box-shadow: none;
}

.slider-banner-right {
    flex: 1;
    min-width: 0;
    height: clamp(240px, 20vw, 380px);
    background-color: #F4F4F4;
    border-radius: 12px;
}

/* Category Filter */
.category-filter-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.category-filter {
    background-color: #ffffff;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-gray);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.category-filter::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.category-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(270deg, #FFFFFF 61.25%, rgba(255, 255, 255, 0) 121.25%);
    border: none;
    width: fit-content;
    min-width: 40px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s;
    box-sizing: border-box;
}

.category-scroll-btn-right {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 61.25%, rgba(255, 255, 255, 0) 121.25%);
}

.category-scroll-btn-left {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 61.25%, rgba(255, 255, 255, 0) 121.25%);
}

.category-scroll-btn i {
    color: #333;
    font-size: 16px;
    opacity: 0.7;
}

.category-scroll-btn:hover i {
    opacity: 1;
}

.category-scroll-btn.show {
    display: flex;
}

.category-filter::-webkit-scrollbar {
    height: 4px;
}

.category-filter::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-filter::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 2px;
}

.category-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 100px;
    height: 32px;
    padding: 0 12px;
    gap: 24px;
    border-radius: 6px;
    background-color: var(--lighter-green);
    color: #666;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-right: 8px;
    box-sizing: border-box;
}

.category-btn:hover {
    background-color: var(--light-green);
    color: #333;
    text-decoration: none;
}

.category-btn:focus {
    outline: none;
    box-shadow: none;
}

.category-btn.active {
    background-color: var(--primary-green);
    color: #ffffff;
}

#video-category-select {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 5px 15px;
    height: auto;
}

/* Video Grid */
.video-grid-container {
    padding: 24px 0;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    justify-content: start;
    justify-items: center;
}

/* Large Screen Optimizations */
/* 1400px - 1599px: 4 columns, optimized for 125% scaling */
@media (min-width: 1400px) and (max-width: 1599px) {
    .video-grid {
        grid-template-columns: repeat(4, minmax(280px, 1fr));
        gap: 20px;
    }

    .video-card {
        width: 100%;
        max-width: 340px;
    }

    .video-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* 1500px - 1699px: 4 columns */
@media (min-width: 1500px) and (max-width: 1699px) {
    .video-grid {
        grid-template-columns: repeat(4, minmax(300px, 1fr));
        gap: 24px;

    }
}

/* 1700px - 1919px: 4-5 columns */
@media (min-width: 1700px) and (max-width: 1919px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        max-width: 100%;
    }

    .video-grid-container {
        max-width: 1800px;
    }
}

/* 1920px+: Full HD and above */
@media (min-width: 1920px) {
    .elemegi-main-content {
        padding-left: 60px;
        padding-right: 60px;
    }

    .video-grid-container {
        max-width: 1900px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 28px;
    }

    .slider-banner-area {
        gap: 28px;
    }

    .slider-banner-left {
        height: 340px;
    }

    .slider-banner-right {
        height: 340px;
    }
}

/* 2560px+: QHD / 2K and above */
@media (min-width: 2560px) {
    .elemegi-main-content {
        padding-left: 80px;
        padding-right: 80px;
    }

    .video-grid-container {
        max-width: 1600px;
        margin: 0 auto;
    }

    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .slider-banner-area {
        gap: 32px;
    }

    .slider-banner-left {
        height: 380px;
    }

    .slider-banner-right {
        height: 380px;
    }

    .category-btn {
        height: 36px;
        padding: 0 16px;
    }
}

/* 3840px+: 4K displays */
@media (min-width: 3840px) {
    .elemegi-main-content {
        padding-left: 100px;
        padding-right: 100px;
    }

    .video-grid-container {
        max-width: 3400px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
    }

    .slider-banner-left {
        height: 450px;
    }

    .slider-banner-right {
        height: 450px;
    }
}

.video-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    min-height: 132px;
    background-color: #ffffff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: 0px solid #E4E7E4;
    border-right: 1px solid #E4E7E4;
    border-bottom: 1px solid #E4E7E4;
    border-left: 1px solid #E4E7E4;
    border-style: solid;
    overflow: visible;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-top: 1px solid transparent;
    box-sizing: border-box;
}

.video-thumbnail>img:not(.video-author-avatar) {

    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.video-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    min-width: 99px;
    height: 28px;
    padding: 0 8px;
    gap: 10px;
    border-radius: 8px;
    background-color: rgba(2, 30, 2, 0.698);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    z-index: 3;
    box-sizing: border-box;
    justify-content: center;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    min-width: 38px;
    height: 20px;
    background: #021E02B2;
    color: #FFFFFF;
    padding: 1px 6px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    box-shadow: 0px 0px 8px 0px #A8A8A840;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.video-author-avatar {
    position: absolute;
    bottom: 2px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    z-index: 100;
    transform: translateY(50%);
    pointer-events: auto;
    cursor: pointer;
}

.video-info {
    display: flex;
    flex-direction: column;
    padding: 12px 8px 16px 16px;
    gap: 16px;
    box-sizing: border-box;
}

.video-author-name {
    font-family: var(--sidebar-font);
    font-size: 13px;
    font-weight: 600;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0;
    color: #707470;
    margin-bottom: 0;
}

.video-title {
    font-family: var(--sidebar-font);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0;
    color: #1A1A1A;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    font-family: var(--sidebar-font);
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0;
    color: #707470;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 301px;
    height: 20px;
    gap: 8px;
    box-sizing: border-box;
}

.video-meta span {
    font-family: var(--sidebar-font);
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0;
}

.video-meta i {
    font-size: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .elemegi-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .elemegi-sidebar.open {
        transform: translateX(0);
    }

    .elemegi-main-content {
        margin-left: 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        width: 100%;
        margin: 12px 0 0;
        max-width: 100%;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
    background-color: var(--primary-green);
    color: #ffffff;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Scrollbar Styles */
.elemegi-sidebar::-webkit-scrollbar {
    width: 6px;
}

.elemegi-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.elemegi-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-gray);
    border-radius: 3px;
}

.elemegi-sidebar::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Liked Videos Page */
.liked-videos-container {
    width: 100%;
    padding: 24px 0;
    min-height: calc(100vh - 200px);
}

.liked-videos-page-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
}

.liked-videos-empty-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 250px);
    width: 100%;
}

.liked-videos-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 460px;
}

.liked-videos-icon-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.liked-videos-icon {
    width: 82px;
    height: 76px;
    opacity: 1;
    object-fit: contain;
}

.liked-videos-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #1A1A1A;
    margin: 0 0 8px 0;
}

.liked-videos-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #1A1A1A;
    margin: 0 0 24px 0;
}

.liked-videos-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    height: 36px;
    padding: 12px 16px;
    border-radius: 56px;
    border: 1px solid #1A1A1A;
    background-color: transparent;
    color: #1A1A1A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    gap: 4px;
    box-sizing: border-box;
}

.liked-videos-btn:hover {
    background-color: #1A1A1A;
    color: #ffffff;
    text-decoration: none;
}

/* Channel Profile Page */
.channel-banner-container {
    width: 100%;
}

.channel-banner-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
}

.channel-header-info {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 8px 40px 0;
}

.channel-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.channel-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.channel-details {
    flex: 1;
}

.channel-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    color: #1A1A1A;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.channel-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #707470;
    margin-bottom: 12px;
    max-width: 800px;
}

.channel-stats {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #707470;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 20px;
    letter-spacing: 0%;
}

.channel-stats .dot-separator {
    font-size: 10px;
    color: #707470;
    opacity: 0.6;
}

.channel-stats strong {
    color: #1A1A1A;
    font-weight: 600;
}


.channel-stats span:last-child {
    color: #707470;
    font-weight: 500;
}

/* New Channel Action Buttons */
.btn-channel-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 56px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid #E4E7E4;
    background: #FFFFFF;
    color: #1A1A1A;
    white-space: nowrap;
}

.btn-channel-action:hover {
    background: #f8f9fa;
    border-color: #d1d1d1;
}

.btn-subscribe-main {
    background: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
}

.btn-subscribe-main:hover {
    background: #333333;
    color: #FFFFFF;
    border-color: #333333;
}

.btn-subscribe {
    width: 96px;
    height: 36px;
    border-radius: 56px;
    gap: 4px;
    padding: 12px 16px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;

}

.btn-subscribe:hover {
    background-color: #333333;
}

.btn-unsubscribe {
    width: auto;
    min-width: 93px;
    background-color: #E4E7E4;
    color: #1A1A1A;
    border: 1px solid #E4E7E4;
}

.btn-unsubscribe:hover {
    background-color: #E4E7E4;
    color: #1A1A1A;
}

.btn-subscribe:focus,
.btn-unsubscribe:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-unsubscribe-main {
    background: #E4E7E4;
    color: #1A1A1A;
    border-color: #E4E7E4;
}

.btn-unsubscribe-main:hover {
    background: #E4E7E4;
}

.btn-channel-action:focus {
    outline: none !important;
    box-shadow: none !important;
}

.channel-videos-section {
    padding-bottom: 60px;
    margin-bottom: 40px;
}

/* Settings Page Tabs */
.settings-tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #E4E7E4;
    margin-bottom: 32px;
    padding-bottom: 0;
}

.settings-tab-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #707470;
    text-decoration: none !important;
    padding-bottom: 12px;
    position: relative;
    transition: color 0.2s;
}

.settings-tab-link:hover {
    color: #1A1A1A;
}

.settings-tab-link.active {
    color: #1A1A1A;
}

.settings-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1A1A1A;
}

/* Modernized Form Styles */
.modern-settings-form {
    width: 440px;
    min-height: 602px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
}

.settings-form-group {
    margin-bottom: 0;
}

.settings-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.password-toggle-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #707470;
    cursor: pointer;
    font-size: 18px;
}

.settings-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0;
}

.verify-phone-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #028702;
    text-decoration: none !important;
}

.verify-phone-link:hover {
    color: #016601;
}

.settings-input-wrapper {
    position: relative;
}

.modern-input {
    width: 100%;
    height: 48px;
    border: 1px solid #E4E7E4;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}

.modern-input:focus {
    border-color: #028702;
}

.modern-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #E4E7E4;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
}

.modern-textarea:focus {
    border-color: #028702;
}

.input-helper-row {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.input-helper-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #707470;
    line-height: 18px;
}

.input-helper-text strong {
    color: #1A1A1A;
    font-weight: 700;
}

.char-counter {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #707470;
}

.btn-save-settings {
    width: 100%;
    height: 52px;
    background-color: #028702;
    color: #FFFFFF;
    border: none;
    border-radius: 56px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 15px;
}

.btn-save-settings:hover {
    background-color: #016601;
}

.btn-save-settings:disabled {
    background-color: #E4E7E4;
    cursor: not-allowed;
}

.alert-modern {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    border: none;
}

.alert-modern-success {
    background-color: #E5F0E5;
    color: #028702;
}

.alert-modern-danger {
    background-color: #FEEBEB;
    color: #E02424;
}

.elemegi-layout.sidebar-overlay-mode .elemegi-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
    /* Overlay modunda da kapalı başla */
}

.elemegi-layout.sidebar-overlay-mode .elemegi-sidebar.open {
    display: block !important;
}

.sidebar-overlay-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.elemegi-layout.sidebar-overlay-mode .sidebar-overlay-backdrop.show {
    display: block;
}

.elemegi-layout.sidebar-overlay-mode .elemegi-main-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-left: 0 !important;
    padding-left: 20px;
    padding-right: 20px;
}

.elemegi-layout.sidebar-overlay-mode #mainSidebarToggle {
    display: block !important;
}

.sidebar-toggle-btn {
    display: none;
    /* Normal sayfalarda gizle */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.elemegi-layout.sidebar-overlay-mode .sidebar-toggle-btn {
    display: flex;
    /* Sadece overlay modunda göster */
}

.sidebar-toggle-btn:hover {
    background-color: #f0f0f0;
}

.sidebar-toggle-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Video Page Styles */
.video-page-container {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.video-main-section {
    flex: 1;
    min-width: 0;
}

.video-player-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
}

.video-info-box {
    margin-bottom: 24px;
    padding: 0 4px;
}

.video-page-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 28px;
    width: 100%;
    max-width: 900px;
    height: 28px;
}

.video-info-box-header {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
    margin-bottom: 16px;
}

.video-info-box-header a,
.video-info-box-header .stat-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #707470;
    text-decoration: none;
}

.video-info-box-header .stat-sep {
    color: #707470;
    font-size: 10px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.video-info-box-header a:hover {
    color: #1A1A1A;
}

.video-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.video-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-detail .name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #1A1A1A;
    display: block;
    text-decoration: none;
    letter-spacing: 0%;
}

.author-detail .subs-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-detail .subs {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #707470;
    display: inline-block;
}

.author-detail .subs strong {
    color: #1A1A1A;
    font-weight: 600;
}

.author-detail .subs-sep {
    color: #707470;
    font-size: 14px;
}

.video-stats-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Video Action Buttons (Like, Dislike, Share, More) */
.video-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-action-group {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E4E7E4;
    border-radius: 56px;
    height: 36px;
    overflow: hidden;
}

.action-btn-pill {
    background: transparent;
    border: none;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-btn-pill:hover {
    background-color: #f5f5f5;
}

.action-btn-pill img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.video-action-single img {
    width: 17px;
    height: 15.5px;
    object-fit: contain;
}

.video-dislike-btn img {
    transform: rotate(-180deg);
}

.action-btn-pill i {
    font-size: 16px;
}

.action-divider {
    width: 1px;
    height: 20px;
    background-color: #E4E7E4;
}

.video-action-single {
    background: #FFFFFF;
    border: 1px solid #E4E7E4;
    border-radius: 56px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.video-action-single:hover {
    background-color: #f5f5f5;
    color: #1A1A1A;
    text-decoration: none;
}

.video-action-more-wrapper {
    position: relative;
}

.video-more-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E4E7E4;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 100;
    display: none;
    padding: 8px 0;
}

.video-more-dropdown.show {
    display: block;
}

.video-more-item {
    width: 100%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: #1A1A1A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: left;
}

.video-more-item:hover {
    background-color: #f5f5f5;
}

.video-more-item:focus,
.video-more-item:active {
    outline: none !important;
    background-color: transparent !important;
    color: #1A1A1A !important;
    box-shadow: none !important;
}

.video-more-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #707470;
}

.video-action-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E4E7E4;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #1A1A1A;
}

.video-action-more:hover {
    background-color: #f5f5f5;
}

.video-action-more i {
    font-size: 14px;
}

.video-action-more:focus,
.video-action-single:focus,
.action-btn-pill:focus {
    outline: none !important;
}

.video-suggestions-sidebar {
    width: 440px;
    flex-shrink: 0;
}

.video-suggestions-sidebar-content {
    width: 440px;
    position: relative;
}

.video-suggestions-sidebar-content a {
    text-decoration: none !important;
    color: #1A1A1A !important;
}

.suggestion-card.hidden {
    display: none;
}

.video-suggestions-sidebar-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.show-more-suggestions-container {
    width: 440px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -338.37%, #FFFFFF 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.btn-show-more-suggestions {
    width: 148px;
    height: 36px;
    border-radius: 56px;
    background: #FFFFFF;
    box-shadow: 0px 0px 12px 0px #B4B4B459;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.2s;
    box-sizing: border-box;
}

.btn-show-more-suggestions:hover {
    box-shadow: 0px 0px 15px 0px #B4B4B480;
    transform: translateY(-1px);
}

/* Similar Content Creators Section */
.popular-channels-box {
    width: 440px;
    height: 435px;
    border: 1px solid #E4E7E4;
    border-radius: 16px;
    padding: 18px;
    margin-top: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-channels-header {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 00;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.similar-channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.similar-channel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.similar-channel-info {
    flex: 1;
    min-width: 0;
}

.similar-channel-name {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-channel-stats {
    font-size: 13px;
    color: #707470;
    margin-bottom: 2px;
}

.similar-channel-liked {
    font-size: 12px;
    color: #707470;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-similar-subscribe {
    background-color: #1A1A1A;
    color: #FFFFFF;
    border: none;
    border-radius: 56px;
    padding: 7px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn-similar-subscribe:hover {
    background-color: #333333;
    color: #FFFFFF;
}

.btn-similar-unsubscribe {
    background-color: #E4E7E4;
    color: #1A1A1A;
    border: none;
    border-radius: 56px;
    padding: 7px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn-similar-unsubscribe:hover {
    background-color: #E4E7E4;
    color: #1A1A1A;
}

.btn-similar-unsubscribe:focus {
    outline: none;
}

.similar-channel-info a {
    text-decoration: none !important;
    color: #1A1A1A;
}

.see-more-similar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #028702;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    padding-top: 8px;
}

.see-more-similar-link:hover {
    color: #016601;
    text-decoration: none;
}

.sidebar-footer {
    margin-top: 24px;
    padding: 0 4px;
    width: 312px;
    min-height: 40px;
}

.sidebar-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.sidebar-footer-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #667086;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-footer-link:hover {
    color: #1A1A1A;
    text-decoration: none;
}

.sidebar-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #667086;
    display: block;
}

.suggestion-card {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
}

.suggestion-thumb-wrapper {
    position: relative;
    width: 160px;
    height: 90px;
    flex-shrink: 0;
}

.suggestion-thumb {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.suggestion-duration {
    position: absolute;
    bottom: 8px;
    left: 8px;
    min-width: 39px;
    height: 20px;
    background: #021E02B2;
    color: #FFFFFF;
    padding: 1px 6px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    box-shadow: 0px 0px 8px 0px #A8A8A840;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.suggestion-info {
    flex: 1;
}

.suggestion-category {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    color: var(--primary-green);
    display: block;
    margin-bottom: 2px;
}

.suggestion-title {
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 18px;
}

.suggestion-meta {
    font-size: 12px;
    color: #707470;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media (max-width: 1200px) {
    .video-page-container {
        flex-direction: column;
    }

    .video-suggestions-sidebar {
        width: 100%;
    }
}

.channel-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.cover-upload-form {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 10;
}

.profile-upload-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.cover-upload-btn {
    width: 172px;
    height: 36px;
    background: #1A1A1A;
    border-radius: 56px;
    gap: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    opacity: 1;
}

.cover-upload-btn img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}


.cover-upload-btn span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #FFFFFF;
}

.profile-upload-btn {
    width: 120px;
    height: 120px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: #28272766;
    transition: all 0.2s ease;
    margin: 0 auto;
}

.profile-upload-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.video-description-wrapper {
    margin-bottom: 24px;
    width: 100%;
}

.video-info-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #707470;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    line-height: 18px;
}

.video-description-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #1A1A1A;
    margin-bottom: 4px;
    width: 100%;
    display: block;
    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

.video-description-wrapper.has-toggle .video-description-text:not(.expanded) {
    max-height: 60px;
    /* 3 satır x 20px line-height */
    background: linear-gradient(180deg, #1A1A1A 0%, rgba(26, 26, 26, 0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-description-text.expanded {
    display: block;
    overflow: visible;
    max-height: none;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #1A1A1A;
}

.btn-toggle-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.video-comments-container {
    margin-top: 32px;
}

.comments-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.comments-count-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}


.comment-input-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #E4E7E4;
    border-radius: 56px;
    padding: 8px 16px;
    margin-bottom: 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Yeni Logged-in Comment Alanı */
.comment-input-area-logged {
    margin-bottom: 32px;
    padding: 20px 20px;
    background: #F9F9F9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.comment-input-area-logged.collapsed {
    padding: 16px;
    cursor: pointer;
}

.comment-input-area-logged.collapsed .comment-account-info,
.comment-input-area-logged.collapsed .comment-form-actions {
    display: none;
}

.comment-input-area-logged.collapsed .comment-form-new {
    gap: 0;
}

.comment-input-area-logged.collapsed .comment-input-wrapper {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-account-info {
    margin-bottom: 16px;
}

.comment-account-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #707470;
    display: block;
    margin-bottom: 8px;
}

.comment-user-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-user-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
}

.comment-form-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comment-input-wrapper {
    border-bottom: 1px solid #E4E7E4;
    padding-bottom: 8px;
    transition: border-color 0.2s;
}

.comment-input-wrapper:focus-within {
    border-bottom-color: var(--primary-green);
}

.comment-input-wrapper input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    background: transparent;
    padding: 4px 0;
}

.comment-input-wrapper input::placeholder {
    color: #707470;
}

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
}

.btn-comment-cancel {
    background: none;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    cursor: pointer;
    padding: 8px 12px;
}

.btn-comment-submit {
    background: var(--primary-green);
    border: none;
    border-radius: 56px;
    padding: 10px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-comment-submit:hover {
    background: #027502;
}

.btn-comment-submit:disabled {
    background: #E4E7E4;
    color: #707470;
    cursor: not-allowed;
}

.comment-input-placeholder {
    flex: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #707470;
}

.btn-comment-login {
    background: #FFFFFF;
    border: 1px solid #1A1A1A;
    border-radius: 56px;
    padding: 8px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-comment-login:hover {
    background: #1A1A1A;
    color: #FFFFFF;
    text-decoration: none;
}

.comment-item {
    display: flex;
    gap: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment-content-box {
    flex: 1;
    min-width: 0;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.comment-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
}

.comment-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #707470;
}

.comment-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #1A1A1A;
    margin-bottom: 6px;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.comment-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #707470;
    cursor: pointer;
    transition: color 0.2s;
}

.comment-action-btn:hover {
    color: #1A1A1A;
}

.comment-action-btn img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}


.replies-toggle-btn {
    background: none;
    border: none;
    color: #028702;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}


.replies-container {
    position: relative;
    padding-top: 10px;
    margin-left: -32px;
    /* Ana yorum avatarının (40px) tam ortasına hizalamak için */
    padding-left: 32px;
    margin-bottom: 20px;
}

.replies-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: -25px;
    /* Üstteki boşluğu tamamen kapattık, ana yorumun butonlarına kadar uzanır */
    bottom: 22px;
    /* Son yanıtın 24px'lik avatarının tam ortasında biter */
    width: 1px;
    background-color: #B7B7B7;
}

/* İç içe yanıtlar (Reply to Reply) için çizgi hizalaması */
.replies-container .replies-container {
    margin-left: -24px;
    /* Yanıt avatarının (24px) tam ortasına hizalamak için */
    padding-left: 24px;
}

.replies-container .replies-container::before {
    top: -15px;
    bottom: 22px;
}

.replies-container .comment-item {
    margin-bottom: 20px;
    gap: 12px;
    position: relative;
}

.replies-container .comment-avatar {
    width: 24px;
    height: 24px;
}

.replies-container .comment-text {
    font-size: 13px;
    line-height: 18px;
}

.replies-container .comment-author-name {
    font-size: 12px;
}

/* Comments Pagination Styles */
.comments-pagination-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.comments-pagination-container .pagination {
    display: flex;
    gap: 8px;
    padding: 0;
    list-style: none;
    align-items: center;
}

.comments-pagination-container .page-item {
    margin: 0;
}

.comments-pagination-container .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #E4E7E4;
    border-radius: 50% !important;
    color: #707470;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    background-color: #FFFFFF;
    text-decoration: none;
}

.comments-pagination-container .page-item.active .page-link {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #FFFFFF;
}

.comments-pagination-container .page-link:hover:not(.active) {
    background-color: var(--lighter-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.comments-pagination-container .page-item.disabled .page-link {
    background-color: #F9F9F9;
    color: #B7B7B7;
    border-color: #E4E7E4;
    cursor: not-allowed;
}

.comments-pagination-container .page-link span[aria-hidden="true"] {
    font-size: 18px;
    line-height: 1;
}

.video-gallery-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.video-gallery-list .gallery-item img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
}

/* ========================================
   LARGE SCREEN & HIGH DPI OPTIMIZATIONS
   Support for 125%, 150% Windows scaling
   ======================================== */

/* Container constraints for very large screens */
.elemegi-main-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Browser zoom / OS scaling compensation */
@media screen and (-webkit-min-device-pixel-ratio: 1.25),
screen and (min-resolution: 120dpi) {

    /* 125% zoom - maintain layout integrity */
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .video-card {
        max-width: 100%;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 1.5),
screen and (min-resolution: 144dpi) {

    /* 150% zoom */
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media screen and (min-width: 1600px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 1920px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Ensure proper rendering on scaled displays */
@media screen and (min-width: 1400px) {
    .video-grid {
        justify-items: start;
    }

    .video-card {
        margin: 0;
    }
}

/* Prevent layout breaking on ultra-wide screens */
@media screen and (min-width: 2000px) and (max-width: 3839px) {
    .video-grid-container {
        max-width: min(100%, 2200px);
        margin: 0 auto;
    }
}

/* Video page responsive adjustments for large screens */
@media (min-width: 1600px) {
    .video-page-container {
        gap: 32px;
    }

    .video-suggestions-sidebar {
        width: 480px;
    }

    .video-suggestions-sidebar-content {
        width: 480px;
    }

    .show-more-suggestions-container {
        width: 480px;
    }

    .popular-channels-box {
        width: 480px;
    }
}

@media (min-width: 1920px) {
    .video-page-container {
        gap: 40px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .video-suggestions-sidebar {
        width: 520px;
    }

    .video-suggestions-sidebar-content {
        width: 520px;
    }

    .show-more-suggestions-container {
        width: 520px;
    }

    .popular-channels-box {
        width: 520px;
    }
}

/* Channel page large screen optimizations */
@media (min-width: 1600px) {
    .channel-banner-img {
        height: 280px;
    }
}

@media (min-width: 1920px) {
    .channel-banner-img {
        height: 320px;
    }

    .channel-header-info {
        padding: 48px 8px 48px 0;
    }
}

/* Header search responsive for large screens */
@media (min-width: 1600px) {
    .header-search {
        max-width: 50%;
    }
}

@media (min-width: 1920px) {
    .header-search {
        max-width: 45%;
    }
}

.video-grid,
.video-card,
.video-thumbnail,
.slider-banner-left,
.slider-banner-right {
    transition: all 0.2s ease-out;
}

.gallery-nav-btn {
    transition: all 0.3s ease;
}

.gallery-prev-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1051;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: block;
    opacity: 1;
}

.gallery-next-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1051;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: block;
    opacity: 1;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: block;
}

.gallery-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Notification Dropdown Styles */
.notification-dropdown-link {
    color: #1A1A1A !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.notification-dropdown-link:hover {
    background-color: #f8f9fa;
    color: #1A1A1A !important;
    text-decoration: none !important;
}

.notification-dropdown-link i {
    font-size: 18px;
    color: #1A1A1A;
}

.notification-badge {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%) !important;
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    padding: 3px 6px !important;
    border-radius: 10px !important;
    min-width: 18px !important;
    text-align: center !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    line-height: 1.2 !important;
}

.notification-dropdown {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    padding: 0 !important;
    margin-top: 8px !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    min-width: 350px !important;
    max-width: 400px !important;
}

.notification-dropdown .dropdown-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: #FFFFFF;
    padding: 16px 20px;
    border-bottom: none;
    margin: 0;
}

.notification-dropdown .dropdown-header strong {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
}

.notification-dropdown .mark-all-read-btn {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    background: transparent !important;
    border: none !important;
}

.notification-dropdown .mark-all-read-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.notification-dropdown .dropdown-divider {
    margin: 0;
    border-color: #E4E7E4;
}

.notification-list {
    max-height: 400px !important;
    overflow-y: auto !important;
    background: #F8F9FA;
    padding: 0;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #E4E7E4;
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.notification-item {
    padding: 12px 20px;
    border-bottom: 1px solid #E4E7E4;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background: #FFFFFF;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background-color: #F8F9FA;
}

.notification-item.unread {
    background-color: var(--lighter-green);
}

.notification-item.unread:hover {
    background-color: var(--light-green);
}

.notification-message {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 20px;
    margin-bottom: 4px;
}

.notification-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #707470;
    line-height: 18px;
}

.notification-dropdown #loadMoreNotifications {
    padding: 12px !important;
    color: var(--primary-green) !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    background: #F8F9FA !important;
    text-decoration: none !important;
}

.notification-dropdown #loadMoreNotifications:hover {
    background-color: var(--lighter-green) !important;
    color: var(--dark-green) !important;
    text-decoration: none !important;
}

.notification-dropdown #loadMoreNotifications small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}

.notification-dropdown .text-center.p-3 {
    padding: 24px !important;
}

.notification-dropdown .spinner-border-sm {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
    color: var(--primary-green);
}

.notification-dropdown .text-muted {
    color: #707470 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}

.notification-dropdown .text-danger {
    color: #E02424 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
}

.notifications-header {
    display: none;
}

/* Similar Accounts Modal */
#similarAccountsModal .modal-dialog {
    max-width: 485px;
    margin: 0 auto;
}

#similarAccountsModal .modal-dialog-centered {
    min-height: calc(100% - 1rem);
    display: flex;
    align-items: center;
}

.similar-accounts-modal {
    width: 485px;
    height: 540px;
    border-radius: 6px;
    padding: 20px 32px 32px 32px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
}

.similar-accounts-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
}

.similar-accounts-modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    text-align: center;
    margin: 0;
    flex: 1;
    padding-top: 20px;
}

.similar-accounts-modal-close {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #707470;
    font-size: 19px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.similar-accounts-modal-close:hover {
    opacity: 0.7;
}

.similar-accounts-modal-close:focus {
    outline: none;
}

.similar-accounts-modal-body {
    max-height: calc(540px - 80px);
    overflow-y: auto;
    padding: 0;
}

.similar-accounts-modal-body::-webkit-scrollbar {
    width: 6px;
}

.similar-accounts-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.similar-accounts-modal-body::-webkit-scrollbar-thumb {
    background: #E4E7E4;
    border-radius: 3px;
}

.similar-accounts-modal-body::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.similar-account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.similar-account-item:last-child {
    border-bottom: none;
}

.similar-account-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.similar-account-info {
    flex: 1;
    min-width: 0;
}

.similar-account-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
    line-height: 1.4;
}

.similar-account-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #707470;
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar-account-stats {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #707470;
    line-height: 1.4;
}

#loadMoreSimilarAccountsContainer {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn-load-more-videos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 148px;
    padding: 0 24px;
    height: 40px;
    border-radius: 56px;
    background-color: var(--primary-green);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.btn-load-more-similar-accounts {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 148px;
    padding: 0 24px;
    height: 40px;
    border-radius: 56px;
    background-color: #1A1A1A;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.login-main-body {
    background-color: #FFFFFF !important;
    overflow-x: hidden;
    min-height: 100vh;
}

.modern-login-wrapper {
    display: flex;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.login-left-side {
    flex: 1;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.login-right-side {
    flex: 1;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    background-color: #F8F9FA;
    overflow: hidden;
}

.login-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-form-container {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    position: relative;
}

.login-logo-area {
    margin-bottom: 20px;
    /* Gap handles this mostly, but adding extra to push logo up relative to center */
}

.login-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: left;
    color: #1A1A1A;
    margin: 0;
    opacity: 1;
}

.login-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #707470;
    margin-bottom: 0;
    opacity: 1;
}

.modern-form-group {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

.modern-form-group label {
    display: block;
    width: 100%;
    max-width: 505px;
    height: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #707470;
    opacity: 1;
}

.modern-form-group input {
    width: 100%;
    height: 44px;
    border: 1px solid #E4E7E4;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    transition: all 0.2s;
    outline: none;
    box-sizing: border-box;
}

.modern-form-group input:focus {
    border-color: #028702;
    box-shadow: 0 0 0 3px rgba(2, 135, 2, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #707470;
    cursor: pointer;
    font-size: 18px;
}

.btn-login-submit {
    width: 100%;
    height: 52px;
    background-color: #028702;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
    /* Extra space before button */
    margin-bottom: 0;
}

.btn-login-submit:hover {
    background-color: #016601;
}

.login-footer-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    text-align: center;
}

.login-footer-link a {
    color: #028702;
    font-weight: 700;
    text-decoration: underline !important;
}

.login-social-footer {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    margin-top: auto;
    padding-top: 40px;
    box-sizing: border-box;
}

.social-title {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #1A1A1A;
    font-size: 20px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #028702;
}

/* Quote Bubbles */
.quote-bubble {
    position: absolute;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 280px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.bubble-1 {
    top: 8%;
    left: 10%;
    background: rgba(81, 107, 126, 0.9);
}

.bubble-1::after {
    bottom: -15px;
    left: 30px;
    border-width: 15px 15px 0 0;
    border-color: rgba(81, 107, 126, 0.9) transparent transparent transparent;
}

.bubble-2 {
    top: 20%;
    right: 15%;
    background: rgba(56, 52, 107, 0.9);
}

.bubble-2::after {
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0 0;
    border-color: rgba(56, 52, 107, 0.9) transparent transparent transparent;
}

.bubble-3 {
    bottom: 25%;
    right: 25%;
    background: rgba(81, 107, 126, 0.9);
}

.bubble-3::after {
    top: -15px;
    left: 30px;
    border-width: 0 15px 15px 0;
    border-color: transparent rgba(81, 107, 126, 0.9) transparent transparent;
}

.bubble-4 {
    bottom: 8%;
    right: 5%;
    background: rgba(56, 52, 107, 0.9);
}

.bubble-4::after {
    top: -15px;
    left: 30px;
    border-width: 0 15px 15px 0;
    border-color: transparent rgba(56, 52, 107, 0.9) transparent transparent;
}

.social-icon {
    width: 22px;
    height: 22px;
}

.modern-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.modern-form-row .modern-form-group {
    flex: 1;
}

.modern-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 4px;
}

.modern-checkbox {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    cursor: pointer;
    accent-color: #028702;
}

.checkbox-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #1A1A1A;
    cursor: pointer;
}

.checkbox-label a {
    color: #1A1A1A;
    text-decoration: underline;
}

.btn-register-submit {
    width: 100%;
    height: 52px;
    background-color: #028702;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.btn-register-submit:hover {
    background-color: #016601;
}

.login-logo-img {
    width: 150px;
    height: 36px;
}

.single-video-info-content {
    border-radius: 12px;
    border: 1px solid #E4E7E4;
    background: #f9f9f9;
    padding: 12px;
}

.mobile-preview-header {
    display: none;
}

/* Login Page Responsive */
@media (max-width: 992px) {
    .login-right-side {
        display: none;
    }

    .login-left-side {
        padding: 40px;
        max-width: 100%;
    }

    .login-social-footer {
        padding-top: 30px;
    }
}

@media (max-width: 576px) {
    .login-left-side {
        padding: 24px;
    }

    .login-form-container {
        max-width: 100%;
        gap: 16px;
    }

    .login-title {
        font-size: 26px;
    }

    .login-social-footer {
        max-width: 100%;
    }
}

/* Login Page - Large Screen Optimizations */
@media (min-width: 1400px) {
    .login-form-container {
        max-width: 450px;
        gap: 22px;
    }

    .login-left-side {
        padding: 60px;
    }
}

@media (min-width: 1600px) {
    .login-form-container {
        max-width: 480px;
        gap: 24px;
    }

    .login-left-side {
        padding: 80px;
    }

    .login-social-footer {
        max-width: 480px;
    }
}

@media (min-width: 1920px) {
    .login-form-container {
        max-width: 505px;
        gap: 26px;
    }

    .login-left-side {
        padding: 100px;
    }

    .login-social-footer {
        max-width: 505px;
        padding-top: 50px;
    }
}

@media (min-width: 2560px) {
    .login-form-container {
        max-width: 550px;
        gap: 28px;
    }

    .login-left-side {
        padding: 120px;
    }

    .login-social-footer {
        max-width: 550px;
    }
}

/* SweetAlert2 Button Focus Outline Remove */
.swal2-confirm:focus,
.swal2-cancel:focus,
.swal2-deny:focus {
    outline: none !important;
    box-shadow: none !important;
}

.swal2-confirm:focus-visible,
.swal2-cancel:focus-visible,
.swal2-deny:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}