* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-width: 1920px;
    margin: 0 auto;
}

/* Top Navigation */
.top-nav {
    
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li.active a {
    color: #ff6b9d;
}

.nav-menu li a:hover {
    color: #ff6b9d;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    background: #2a2a2a;
    border-radius: 25px;
    padding: 8px 20px;
    gap: 10px;
}

.search-icon {
    font-size: 18px;
    color: #aaaaaa;
}

.search-bar {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-bar::placeholder {
    color: #666666;
}

.hamburger-menu {
    font-size: 24px;
    color: #aaaaaa;
    cursor: pointer;
    padding: 8px;
}

.profile-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 30px 40px 30px 40px;
    display: flex;
    gap: 30px;
}

.content-area {
    flex: 1;
    min-width: 0;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    border-radius: 20px;
    padding: 0 0 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 320px;
    overflow: hidden;
}

.hero-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(5px);
}

.hero-arrow.left-arrow {
    left: 20px;
}

.hero-arrow.right-arrow {
    right: 20px;
}

.hero-arrow:hover {
    background: rgba(255, 107, 157, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.hero-text {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 18px;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.anime-characters-group {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.anime-characters-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent),
        radial-gradient(2px 2px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 33% 60%, #fff, transparent);
    background-size: 200px 200px;
    opacity: 0.5;
}

.hero-right {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.hero-image-side {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #f5576c 0%, #c44569 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.anime-character-side {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(196, 69, 105, 0.2) 100%);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ff6b9d;
}

/* Content Rows */
.content-row {
    margin-bottom: 40px;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.row-header h2 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
}

.row-arrows {
    display: flex;
    gap: 15px;
}

.row-arrow {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s;
}

.row-arrow:hover {
    background: rgba(255, 107, 157, 0.3);
}

.anime-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.anime-cards-container::-webkit-scrollbar {
    display: none;
}

.anime-card {
    flex: 0 0 200px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.anime-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 200px;
    height: 280px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.card-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #ffd700;
    font-weight: 600;
    z-index: 3;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.card-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    border: 1px;
    border-color: rgba(rgb(174, 255, 181), green, blue, 0.3);
    border-radius: 15px;

}

.sidebar-section h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Schedule List */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    transition: background 0.3s;
}


.schedule-date {
    font-size: 14px;
    color: #ff6b9d;
    font-weight: 600;
    flex-shrink: 0;
}

.schedule-title {
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    flex: 1;
    margin-left: 15px;
}

/* Updates Section */
.updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.updates-arrows {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.update-arrow {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s;
}

.update-arrow:hover {
    background: rgba(255, 107, 157, 0.3);
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ff6b9d #2a2a2a;
}

.updates-list::-webkit-scrollbar {
    width: 6px;
}

.updates-list::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.updates-list::-webkit-scrollbar-thumb {
    background: #ff6b9d;
    border-radius: 10px;
}

.update-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #2a2a2a;
    border-radius: 10px;
    transition: background 0.3s;
}

.update-item:hover {
    background: #333333;
}

.update-thumbnail {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    flex-shrink: 0;
}

.update-text {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.4;
    flex: 1;
}
