/* ======== Alapstílusok ======== */
:root {
    --bg-primary: #031523;
    --bg-secondary: #021016;
    --accent-primary: #04eef1;
    --accent-secondary: #028a8f;
    --button-color: #06b3b6;
    --text-primary: #d3e9ec;
    --text-secondary: #8faab3;
    --error-color: #ff6b6b;
    --success-color: #7bd389;
    --warning-color: #ffd166;
    --info-color: #4fc4ff;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --transition-speed: 0.3s;
    --radius: 4px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
  }
  
  a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
  }
  
  a:hover {
    color: var(--accent-secondary);
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
  }
  
  .btn-primary {
    background-color: var(--button-color);
    color: var(--text-primary);
  }
  
  .btn-primary:hover {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 1px solid var(--button-color);
    color: var(--button-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--button-color);
    color: var(--text-primary);
  }
  
  .btn-danger {
    background-color: var(--error-color);
    color: var(--text-primary);
  }
  
  .btn-danger:hover {
    background-color: #e05555;
  }
  
  .btn-text {
    background-color: transparent;
    color: var(--accent-primary);
    padding: 0.5rem;
  }
  
  .btn-text:hover {
    background-color: rgba(4, 238, 241, 0.1);
    color: var(--accent-primary);
  }
  
  .btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  .btn i {
    margin-right: 0.5rem;
  }
  
  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border-left: 4px solid transparent;
    position: relative;
  }
  
  .alert-success {
    background-color: rgba(123, 211, 137, 0.1);
    border-left-color: var(--success-color);
    color: var(--success-color);
  }
  
  .alert-error {
    background-color: rgba(255, 107, 107, 0.1);
    border-left-color: var(--error-color);
    color: var(--error-color);
  }
  
  .alert-warning {
    background-color: rgba(255, 209, 102, 0.1);
    border-left-color: var(--warning-color);
    color: var(--warning-color);
  }
  
  .alert-info {
    background-color: rgba(79, 196, 255, 0.1);
    border-left-color: var(--info-color);
    color: var(--info-color);
  }
  
  .close-alert {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: currentColor;
    cursor: pointer;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(4, 238, 241, 0.3);
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: border-color var(--transition-speed) ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(4, 238, 241, 0.1);
  }
  
  .checkbox-group {
    display: flex;
    align-items: center;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
  }
  
  .checkbox-group label {
    margin-bottom: 0;
  }
  
  .form-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
  }
  
  .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .error-text {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
  }
  
  /* ======== Header ======== */
  .main-header {
    background-color: var(--bg-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
  }
  
  .search-bar {
    flex: 1;
    margin: 0 2rem;
    max-width: 500px;
  }
  
  .search-bar form {
    position: relative;
  }
  
  .search-bar input[type="text"] {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    background-color: rgba(2, 16, 22, 0.7);
    border: 1px solid rgba(4, 238, 241, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
  }
  
  .search-bar input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: rgba(2, 16, 22, 0.9);
  }
  
  .search-bar button {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
  }
  
  .nav-container {
    position: relative;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .nav-toggle-label {
    display: none;
    cursor: pointer;
  }
  
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: var(--accent-primary);
    height: 2px;
    width: 2rem;
    position: relative;
  }
  
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: '';
    position: absolute;
  }
  
  .nav-toggle-label span::before {
    bottom: 7px;
  }
  
  .nav-toggle-label span::after {
    top: 7px;
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav li {
    margin-left: 1.5rem;
    position: relative;
  }
  
  .main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition-speed) ease;
    display: block;
  }
  
  .main-nav a:hover {
    color: var(--accent-primary);
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
  }
  
  .dropdown-toggle .avatar-small {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 0.5rem;
    object-fit: cover;
  }
  
  .dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 10px var(--shadow-color);
    border-radius: var(--radius);
    min-width: 200px;
    padding: 0.5rem 0;
    display: none;
    z-index: 1000;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .dropdown-menu li {
    margin: 0;
  }
  
  .dropdown-menu a {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
  }
  
  .dropdown-menu a i {
    margin-right: 0.5rem;
    width: 18px;
    text-align: center;
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(4, 238, 241, 0.1);
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ======== Main Content ======== */
  .main-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
  }
  
  /* ======== Footer ======== */
  .main-footer {
    background-color: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(4, 238, 241, 0.1);
    margin-top: 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h2 {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-secondary);
  }
  
  .footer-section.about p {
    color: var(--text-secondary);
  }
  
  .social {
    display: flex;
    margin-top: 1rem;
  }
  
  .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(4, 238, 241, 0.1);
    color: var(--text-primary);
    margin-right: 0.5rem;
    transition: all var(--transition-speed) ease;
  }
  
  .social a:hover {
    background-color: var(--accent-primary);
    color: var(--bg-secondary);
    transform: translateY(-3px);
  }
  
  .footer-section.links ul {
    list-style: none;
  }
  
  .footer-section.links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section.links a {
    color: var(--text-secondary);
    transition: color var(--transition-speed) ease;
    display: inline-block;
  }
  
  .footer-section.links a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
  }
  
  .footer-section.contact p {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    margin-bottom: 1rem;
  }
  
  .footer-section.contact i {
    width: 20px;
    color: var(--accent-primary);
    margin-right: 0.5rem;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(4, 238, 241, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  /* ======== Hero Section ======== */
  .hero-section {
    background: linear-gradient(to right, var(--bg-secondary), var(--bg-primary));
    padding: 4rem 0;
    text-align: center;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/dots-pattern.svg');
    opacity: 1;
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  /* ======== Section Styles ======== */
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
    padding-bottom: 0.5rem;
  }
  
  .section-header h2 {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  
  .view-all {
    color: var(--accent-primary);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
  }
  
  .view-all:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
  }
  
  .section-latest,
  .section-popular,
  .section-categories {
    margin-bottom: 3rem;
  }
  
  /* ======== VOD Card ======== */
  .vod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .vod-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }
  
  .vod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-color);
  }
  
  .vod-thumbnail {
    position: relative;
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .vod-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform var(--transition-speed) ease;
  }
  
  .vod-card:hover .vod-thumbnail img {
    transform: scale(1.05);
  }
  
  .vod-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(2, 16, 22, 0.8);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-primary);
  }
  
  .vod-info {
    padding: 1rem;
  }
  
  .vod-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .vod-info h3 a {
    color: var(--text-primary);
  }
  
  .vod-info h3 a:hover {
    color: var(--accent-primary);
  }
  
  .vod-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
  }
  
  .vod-category a {
    color: var(--accent-primary);
  }
  
  .vod-category a:hover {
    text-decoration: underline;
  }
  
  .vod-views,
  .vod-date {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .vod-views i,
  .vod-date i {
    margin-right: 0.25rem;
  }
  
  .vod-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .vod-likes,
  .vod-dislikes {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .vod-likes i {
    color: var(--success-color);
    margin-right: 0.25rem;
  }
  
  .vod-dislikes i {
    color: var(--error-color);
    margin-right: 0.25rem;
  }
  
  /* ======== Category Grid ======== */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .category-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
  }
  
  .category-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
  }
  
  .category-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
  }
  
  /* ======== Authentication Pages ======== */
  .auth-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
  }
  
  .auth-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 2rem;
    width: 100%;
    max-width: 450px;
  }
  
  .auth-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    font-size: 1.75rem;
  }
  
  .auth-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
  }
  
  .auth-footer a {
    color: var(--accent-primary);
  }
  
  .auth-footer a:hover {
    text-decoration: underline;
  }
  
  /* ======== VOD Player ======== */
  .vod-player-section {
    margin-bottom: 2rem;
  }
  
  .vod-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
  }
  
  .vod-player-wrapper {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow-color);
    overflow: hidden;
  }
  
  #vod-player {
    width: 100%;
    background-color: #000;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
  }
  
  .vod-controls {
    padding: 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .vod-title-container {
    margin-bottom: 1rem;
  }
  
  .vod-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .vod-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  .vod-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .reaction-buttons {
    display: flex;
    gap: 0.5rem;
  }
  
  .reaction-btn,
  .favorite-btn,
  .share-btn {
    display: flex;
    align-items: center;
    background-color: rgba(4, 238, 241, 0.1);
    border: none;
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
  }
  
  .reaction-btn i,
  .favorite-btn i,
  .share-btn i {
    margin-right: 0.5rem;
  }
  
  .reaction-btn:hover,
  .favorite-btn:hover,
  .share-btn:hover {
    background-color: rgba(4, 238, 241, 0.2);
  }
  
  .reaction-btn.active {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
  }
  
  .favorite-btn.active {
    background-color: var(--accent-secondary);
    color: var(--text-primary);
  }
  
  .favorite-btn.active i {
    color: #ff6b6b;
  }
  
  .share-dropdown {
    position: relative;
  }
  
  .share-options {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 10px var(--shadow-color);
    border-radius: var(--radius);
    min-width: 200px;
    padding: 0.5rem 0;
    display: none;
    z-index: 100;
  }
  
  /*.share-dropdown:hover .share-options {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
  }*/

  /* Új osztály a megjelenítéshez */
  .share-options.show {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
  }

  /* Aktív állapot a share gombhoz */
  .share-btn.active {
    background-color: rgba(4, 238, 241, 0.3);
  }
  
  .share-options a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
  }
  
  .share-options a i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
  }
  
  .share-options a:hover {
    background-color: rgba(4, 238, 241, 0.1);
  }
  
  .vod-description {
    padding: 1rem;
  }
  
  .vod-description h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
  }
  
  .description-content {
    color: var(--text-secondary);
    white-space: pre-line;
  }
  
  .vod-sidebar {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .vod-sidebar h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .similar-vod-item {
    margin-bottom: 1rem;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .similar-vod-item a {
    display: flex;
    color: var(--text-primary);
    gap: 0.8rem;
  }

  .similar-info {
    min-width: 0;
  }
  
  .similar-thumbnail {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  
  .similar-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .similar-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(2, 16, 22, 0.8);
    padding: 0.1rem 0.3rem;
    border-radius: var(--radius);
    font-size: 0.7rem;
    color: var(--text-primary);
  }
  
  .similar-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .similar-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0;
  }
  
  /* ======== Comments Section ======== */
  .comments-section {
    margin-top: 2rem;
  }
  
  .comments-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .comments-container h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .comment-form-container {
    margin-bottom: 2rem;
  }
  
  .comment-form {
    display: flex;
    gap: 1rem;
  }
  
  .user-avatar {
    flex-shrink: 0;
  }
  
  .user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .comment-input {
    flex: 1;
  }
  
  .comment-input textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    background-color: rgba(2, 16, 22, 0.5);
    border: 1px solid rgba(4, 238, 241, 0.2);
    border-radius: var(--radius);
    color: var(--text-primary);
    resize: vertical;
  }
  
  .comment-input textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
  }
  
  .comment-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
  }
  
  .add-timestamp-btn,
  .submit-comment-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
  }
  
  .add-timestamp-btn i,
  .submit-comment-btn i {
    margin-right: 0.3rem;
  }
  
  .add-timestamp-btn:hover {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.1);
  }
  
  .submit-comment-btn {
    background-color: var(--button-color);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
  }
  
  .submit-comment-btn:hover {
    background-color: var(--accent-secondary);
  }
  
  .comment-login-prompt {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(2, 16, 22, 0.5);
    border-radius: var(--radius);
    border: 1px solid rgba(4, 238, 241, 0.2);
  }
  
  .comment-login-prompt p {
    color: var(--text-secondary);
    margin-bottom: 0;
  }
  
  .comment-login-prompt a {
    color: var(--accent-primary);
    font-weight: 500;
  }
  
  .comment-login-prompt a:hover {
    text-decoration: underline;
  }
  
  .comments-list {
    margin-top: 1.5rem;
  }
  
  .comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .comment-avatar {
    flex-shrink: 0;
  }
  
  .comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .comment-content {
    flex: 1;
  }
  
  .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
  }
  
  .comment-author {
    font-weight: 500;
    color: var(--text-primary);
    margin-right: 0.5rem;
  }
  
  .comment-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .comment-body {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
  }
  
  .timestamp-link {
    display: inline-flex;
    align-items: center;
    background-color: rgba(4, 238, 241, 0.1);
    color: var(--accent-primary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .timestamp-link i {
    margin-right: 0.3rem;
  }
  
  .timestamp-link:hover {
    background-color: rgba(4, 238, 241, 0.2);
  }
  
  .comment-footer {
    display: flex;
    gap: 1rem;
  }
  
  .reply-btn,
  .view-replies-btn,
  .delete-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    transition: all var(--transition-speed) ease;
  }
  
  .reply-btn i,
  .view-replies-btn i,
  .delete-btn i {
    margin-right: 0.3rem;
  }
  
  .reply-btn:hover,
  .view-replies-btn:hover {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.1);
  }
  
  .delete-btn:hover {
    color: var(--error-color);
    background-color: rgba(255, 107, 107, 0.1);
  }
  
  .reply-form-container {
    margin-top: 1rem;
    margin-left: 2rem;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .replies-container {
    margin-top: 1rem;
    margin-left: 2rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(4, 238, 241, 0.2);
  }
  
  .comment.reply {
    margin-bottom: 1rem;
  }
  
  .comment.reply:last-child {
    margin-bottom: 0;
  }
  
  .no-comments {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
  }
  
  .no-comments p {
    margin-bottom: 0;
  }
  
  /* ======== Search & Filter Pages ======== */
  .search-section {
    margin-bottom: 2rem;
  }
  
  .search-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .search-header {
    margin-bottom: 1.5rem;
  }
  
  .search-header h1 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
  }
  
  .advanced-search-form {
    margin-bottom: 1.5rem;
  }
  
  .search-input-group {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background-color: rgba(2, 16, 22, 0.7);
    border: 1px solid rgba(4, 238, 241, 0.3);
    border-radius: var(--radius);
    color: var(--text-primary);
  }
  
  .search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(4, 238, 241, 0.1);
  }
  
  .search-btn {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
  }
  
  .search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
  }
  
  .filter-group {
    flex: 1;
    min-width: 200px;
  }
  
  .filter-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  .filter-select {
    width: 100%;
    padding: 0.6rem;
    background-color: rgba(2, 16, 22, 0.7);
    border: 1px solid rgba(4, 238, 241, 0.3);
    border-radius: var(--radius);
    color: var(--text-primary);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238faab3'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5rem;
  }
  
  .filter-select:focus {
    outline: none;
    border-color: var(--accent-primary);
  }
  
  .filter-btn {
    min-width: 100px;
  }
  
  .results-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
    color: var(--text-secondary);
  }
  
  .no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
  }
  
  .no-results i {
    color: var(--accent-secondary);
    margin-bottom: 1rem;
  }
  
  .no-results h2 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .no-results p {
    margin-bottom: 0;
  }
  
  /* ======== Pagination ======== */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.3rem;
  }
  
  .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    color: var(--text-primary);
    background-color: rgba(4, 238, 241, 0.1);
    transition: all var(--transition-speed) ease;
  }
  
  .page-link.active {
    background-color: var(--accent-primary);
    color: var(--bg-secondary);
  }
  
  .page-link:hover:not(.active) {
    background-color: rgba(4, 238, 241, 0.2);
  }
  
  .first-page,
  .prev-page,
  .next-page,
  .last-page {
    background-color: var(--bg-secondary);
  }
  
  /* ======== User Profile ======== */
  .user-profile-section {
    margin-bottom: 2rem;
  }
  
  .profile-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .profile-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .profile-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .profile-info {
    flex: 1;
  }
  
  .profile-info h1 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-size: 1.75rem;
  }
  
  .profile-bio {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .profile-meta span {
    display: flex;
    align-items: center;
  }
  
  .profile-meta i {
    margin-right: 0.3rem;
    color: var(--accent-primary);
  }
  
  .profile-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .profile-content {
    display: grid;
    gap: 2rem;
  }
  
  .profile-section {
    margin-bottom: 1rem;
  }
  
  .profile-section .section-header {
    margin-bottom: 1rem;
  }
  
  .no-content {
    text-align: center;
    padding: 2rem;
    background-color: rgba(2, 16, 22, 0.5);
    border-radius: var(--radius);
    color: var(--text-secondary);
  }
  
  /* ======== User Settings ======== */
  .settings-section {
    margin-bottom: 2rem;
  }
  
  .settings-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .settings-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
  }
  
  .settings-nav {
    margin-bottom: 1.5rem;
  }
  
  .settings-tabs {
    display: flex;
    list-style: none;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .tab-item {
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  
  .tab-item i {
    font-size: 1rem;
  }
  
  .tab-item:hover {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.05);
  }
  
  .tab-item.active {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.1);
    position: relative;
  }
  
  .tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent-primary);
  }
  
  .settings-panel {
    display: none;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .settings-panel.active {
    display: block;
  }
  
  .panel-title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .settings-form {
    max-width: 600px;
  }
  
  .readonly-value {
    padding: 0.75rem;
    background-color: rgba(2, 16, 22, 0.5);
    border-radius: var(--radius);
    color: var(--text-secondary);
  }
  
  .current-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .current-avatar h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
  }
  
  .current-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  /* ======== Notifications ======== */
  .notifications-section {
    margin-bottom: 2rem;
  }
  
  .notifications-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .page-title {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
  }
  
  .notifications-actions {
    display: flex;
    gap: 0.5rem;
  }
  
  .notifications-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .filter-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
  }
  
  .filter-link i {
    margin-right: 0.3rem;
  }
  
  .filter-link:hover {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.05);
  }
  
  .filter-link.active {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.1);
  }
  
  .notification-item {
    display: flex;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    border-left: 3px solid transparent;
    background-color: rgba(2, 16, 22, 0.3);
    transition: all var(--transition-speed) ease;
  }
  
  .notification-item:hover {
    background-color: rgba(2, 16, 22, 0.5);
  }
  
  .notification-item.unread {
    background-color: rgba(4, 238, 241, 0.05);
    border-left-color: var(--accent-primary);
  }
  
  .notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(4, 238, 241, 0.1);
    color: var(--accent-primary);
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .notification-content {
    flex: 1;
    min-width: 0;
  }
  
  .notification-text {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .notification-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  .notification-time,
  .notification-type {
    display: flex;
    align-items: center;
  }
  
  .notification-time i,
  .notification-type i {
    margin-right: 0.3rem;
  }
  
  .notification-actions {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-left: 1rem;
  }
  
  .action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(2, 16, 22, 0.7);
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
  }
  
  .action-link:hover {
    background-color: rgba(4, 238, 241, 0.1);
    color: var(--accent-primary);
  }
  
  .action-link[title="Törlés"]:hover {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--error-color);
  }
  
  .empty-notifications {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
  }
  
  .empty-notifications i {
    font-size: 3rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
  }
  
  .empty-notifications p {
    margin-bottom: 0;
  }
  
  /* ======== Favorites ======== */
  .favorites-section {
    margin-bottom: 2rem;
  }
  
  .favorites-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .favorites-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .favorites-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .vod-card-header {
    position: relative;
  }
  
  .favorite-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
  }
  
  .remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(2, 16, 22, 0.8);
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
  }
  
  .remove-btn:hover {
    background-color: var(--error-color);
    color: var(--text-primary);
  }
  
  .vod-dates {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
  }
  
  .vod-upload-date,
  .vod-favorite-date {
    display: flex;
    align-items: center;
  }
  
  .vod-upload-date i,
  .vod-favorite-date i {
    margin-right: 0.3rem;
    width: 14px;
    text-align: center;
  }
  
  .empty-favorites {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
  }
  
  .empty-favorites i {
    font-size: 3rem;
    color: var(--error-color);
    margin-bottom: 1rem;
  }
  
  .empty-favorites h2 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  
  .empty-favorites p {
    margin-bottom: 1rem;
  }
  
  /* ======== Admin Dashboard ======== */
  .admin-body {
    min-height: 100vh;
    background-color: var(--bg-primary);
  }
  
  .admin-container {
    display: flex;
    min-height: 100vh;
  }
  
  .admin-sidebar {
    width: 250px;
    background-color: var(--bg-secondary);
    border-right: 1px solid rgba(4, 238, 241, 0.1);
    transition: all var(--transition-speed) ease;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .sidebar-logo img {
    height: 40px;
  }
  
  .sidebar-toggle-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
  }
  
  .sidebar-user {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.8rem;
  }
  
  .user-info {
    min-width: 0;
  }
  
  .user-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .user-role {
    font-size: 0.75rem;
    color: var(--accent-primary);
    margin-bottom: 0;
  }
  
  .sidebar-nav ul {
    list-style: none;
    padding: 1rem 0;
  }
  
  .sidebar-nav li {
    margin-bottom: 0.2rem;
  }
  
  .sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
  }
  
  .sidebar-nav a i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
    font-size: 1rem;
  }
  
  .sidebar-nav a:hover {
    color: var(--text-primary);
    background-color: rgba(4, 238, 241, 0.05);
  }
  
  .sidebar-nav a.active {
    color: var(--accent-primary);
    background-color: rgba(4, 238, 241, 0.1);
    border-left: 3px solid var(--accent-primary);
  }
  
  .nav-divider {
    height: 1px;
    background-color: rgba(4, 238, 241, 0.1);
    margin: 0.5rem 1rem;
  }
  
  .admin-main {
    flex: 1;
    margin-left: 250px;
    transition: margin-left var(--transition-speed) ease;
  }
  
  .admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--bg-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .header-left {
    display: flex;
    align-items: center;
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .admin-notifications {
    position: relative;
    margin-right: 1rem;
  }
  
  .notifications-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(4, 238, 241, 0.1);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
  }
  
  .notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--error-color);
    color: var(--text-primary);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .notifications-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 10px var(--shadow-color);
    border-radius: var(--radius);
    z-index: 1000;
    margin-top: 0.5rem;
    display: none;
  }
  
  .notifications-dropdown.show {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .dropdown-header h3 {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-primary);
  }
  
  .dropdown-header a {
    font-size: 0.8rem;
    color: var(--accent-primary);
  }
  
  .notification-list {
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .notification-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.05);
  }
  
  .notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(4, 238, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-right: 0.8rem;
    flex-shrink: 0;
  }
  
  .notification-content {
    flex: 1;
    min-width: 0;
  }
  
  .notification-content p {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 0.9rem;
  }
  
  .notification-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
  }
  
  .dropdown-footer {
    padding: 0.75rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .dropdown-footer a {
    color: var(--accent-primary);
    font-size: 0.9rem;
  }
  
  .admin-user-dropdown {
    position: relative;
  }
  
  .user-dropdown-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
  }
  
  .user-dropdown-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.5rem;
    object-fit: cover;
  }
  
  .user-dropdown-btn i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
  }
  
  .user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 10px var(--shadow-color);
    border-radius: var(--radius);
    min-width: 180px;
    z-index: 1000;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    display: none;
    list-style: none;
  }
  
  .user-dropdown-menu.show {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .user-dropdown-menu li {
    margin: 0;
  }
  
  .user-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
  }
  
  .user-dropdown-menu a i {
    margin-right: 0.5rem;
    width: 18px;
    text-align: center;
  }
  
  .user-dropdown-menu a:hover {
    background-color: rgba(4, 238, 241, 0.1);
  }
  
  .dropdown-divider {
    height: 1px;
    background-color: rgba(4, 238, 241, 0.1);
    margin: 0.3rem 0;
  }
  
  .admin-content-wrapper {
    padding: 1.5rem;
  }
  
  .admin-dashboard h1 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
  }
  
  .stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .stat-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
    display: flex;
    align-items: center;
    border-left: 3px solid var(--accent-primary);
    transition: transform var(--transition-speed) ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(4, 238, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .stat-content h3 {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  .stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
  }
  
  .stat-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
  }
  
  .admin-content-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .admin-content-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .admin-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.1);
  }
  
  .card-header h2 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
  }
  
  .card-content {
    padding: 1rem 0;
  }
  
  .admin-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(4, 238, 241, 0.05);
    text-align: left;
  }
  
  .admin-table th {
    font-weight: 500;
    color: var(--text-primary);
    background-color: rgba(2, 16, 22, 0.5);
  }
  
  .admin-table td {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .admin-table tr:hover td {
    background-color: rgba(4, 238, 241, 0.05);
  }
  
  .admin-table .no-data {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
  }
  
  .vods-table .vod-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .vod-details {
    min-width: 0;
  }
  
  .vod-title {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
  }
  
  .status-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
  }
  
  .status-active {
    background-color: rgba(123, 211, 137, 0.1);
    color: var(--success-color);
  }
  
  .status-inactive {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--error-color);
  }
  
  .actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
  }
  
  .content-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .filter-container {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
  }
  
  .table-responsive {
    overflow-x: auto;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px var(--shadow-color);
    margin-bottom: 1.5rem;
  }
  
  .admin-form {
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
    margin-bottom: 1.5rem;
  }
  
  .edit-preview {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .preview-video {
    display: flex;
    gap: 1.5rem;
  }


  /* Új thumbnail CSS */
  .vod-thumbnail {
    position: relative;
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background-color: #000; /* A fekete háttér a kimaradó részekhez */
  }

  .vod-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform var(--transition-speed) ease;
  }

  /* Thumbnail időtartam megjelenítés javítása (ha van) */
  .vod-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 1;
  }

  /* Hover effect megtartása */
  .vod-card:hover .vod-thumbnail img {
    transform: scale(1.05);
  }
  
  .preview-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(2, 16, 22, 0.8);
    color: var(--text-primary);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
  }
  
  .preview-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
  }
  
  .preview-info strong {
    color: var(--text-primary);
  }
  
  .preview-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* ======== Utils ======== */
  .text-center {
    text-align: center;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-left {
    text-align: left;
  }
  
  .mt-1 {
    margin-top: 0.5rem;
  }
  
  .mt-2 {
    margin-top: 1rem;
  }
  
  .mt-3 {
    margin-top: 1.5rem;
  }
  
  .mb-1 {
    margin-bottom: 0.5rem;
  }
  
  .mb-2 {
    margin-bottom: 1rem;
  }
  
  .mb-3 {
    margin-bottom: 1.5rem;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .d-none {
    display: none;
  }
  
  .d-block {
    display: block;
  }
  
  .d-flex {
    display: flex;
  }
  
  .flex-column {
    flex-direction: column;
  }
  
  .align-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .justify-between {
    justify-content: space-between;
  }
  
  .gap-1 {
    gap: 0.5rem;
  }
  
  .gap-2 {
    gap: 1rem;
  }
  
  .gap-3 {
    gap: 1.5rem;
  }
  
  .w-100 {
    width: 100%;
  }
  
  .w-auto {
    width: auto;
  }
  
  .h-100 {
    height: 100%;
  }
  
  .h-auto {
    height: auto;
  }
  
  .rounded {
    border-radius: var(--radius);
  }
  
  .shadow {
    box-shadow: 0 2px 10px var(--shadow-color);
  }
  
  .bg-primary {
    background-color: var(--bg-primary);
  }
  
  .bg-secondary {
    background-color: var(--bg-secondary);
  }
  
  .text-primary {
    color: var(--text-primary);
  }
  
  .text-secondary {
    color: var(--text-secondary);
  }
  
  .text-accent {
    color: var(--accent-primary);
  }
  
  /* ======== Animations ======== */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .animate-fadeIn {
    animation: fadeIn var(--transition-speed) ease;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }
  
  /* ======== Scrollbar ======== */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
  }
  
  ::-webkit-scrollbar-thumb {
    background: rgba(4, 238, 241, 0.2);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(4, 238, 241, 0.3);
  }
  
  /* ======== Sidebar Collapsed State ======== */
  .sidebar-collapsed .admin-sidebar {
    width: 70px;
    overflow: visible;
  }
  
  .sidebar-collapsed .sidebar-logo span,
  .sidebar-collapsed .sidebar-nav a span,
  .sidebar-collapsed .user-info {
    display: none;
  }
  
  .sidebar-collapsed .admin-main {
    margin-left: 70px;
  }
  
  .sidebar-collapsed .sidebar-nav a {
    justify-content: center;
    padding: 0.75rem;
  }
  
  .sidebar-collapsed .sidebar-nav a i {
    margin-right: 0;
  }
  
  .sidebar-collapsed .sidebar-nav a.active {
    position: relative;
  }
  
  .sidebar-collapsed .user-avatar {
    margin-right: 0;
  }
  
  .sidebar-collapsed .nav-divider {
    margin: 0.5rem 0.5rem;
  }
  
  /* ======== Video Upload Progress ======== */
  .upload-progress {
    margin-top: 1rem;
  }
  
  .progress-bar {
    height: 10px;
    background-color: rgba(4, 238, 241, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  
  .progress-fill {
    height: 100%;
    background-color: var(--accent-primary);
    border-radius: 5px;
    width: 0;
    transition: width 0.3s ease;
  }
  
  .progress-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
  }
  
  /* ======== Loading Animation ======== */
  .loading {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  
  .loading div {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: loading 1.2s linear infinite;
  }
  
  .loading div:nth-child(1) {
    top: 16px;
    left: 0;
    animation-delay: 0s;
  }
  
  .loading div:nth-child(2) {
    top: 10px;
    left: 10px;
    animation-delay: -0.4s;
  }
  
  .loading div:nth-child(3) {
    top: 0;
    left: 16px;
    animation-delay: -0.8s;
  }
  
  .loading div:nth-child(4) {
    top: 10px;
    right: 10px;
    animation-delay: -1.2s;
  }
  
  .loading div:nth-child(5) {
    top: 16px;
    right: 0;
    animation-delay: -1.6s;
  }
  
  @keyframes loading {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
  }
  
  .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3, 21, 35, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
  }
  
  .loading-overlay .loading {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .loading-overlay .loading div {
    width: 16px;
    height: 16px;
  }
  
  .loading-text {
    color: var(--text-primary);
    font-size: 1.2rem;
  }