        .gradient-text {
            background: linear-gradient(45deg, #ff0040, #ff7300);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        /* CSS for button-85 */
        .button-85 {
            padding: 0.6em 2em;
            border: none;
            outline: none;
            color: rgb(255, 255, 255);
            background: #111;
            cursor: pointer;
            position: relative;
            z-index: 0;
            border-radius: 10px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
        }

        .button-85:before {
            content: "";
            background: linear-gradient(
                45deg,
                #ff0000,
                #ff7300,
                #fffb00,
                #48ff00,
                #00ffd5,
                #002bff,
                #7a00ff,
                #ff00c8,
                #ff0000
            );
            position: absolute;
            top: -2px;
            left: -2px;
            background-size: 400%;
            z-index: -1;
            filter: blur(5px);
            -webkit-filter: blur(5px);
            width: calc(100% + 4px);
            height: calc(100% + 4px);
            animation: glowing-button-85 20s linear infinite;
            transition: opacity 0.3s ease-in-out;
            border-radius: 10px;
        }

        @keyframes glowing-button-85 {
            0% {
                background-position: 0 0;
            }
            50% {
                background-position: 400% 0;
            }
            100% {
                background-position: 0 0;
            }
        }

        .button-85:after {
            z-index: -1;
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: #222;
            left: 0;
            top: 0;
            border-radius: 10px;
        }

        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .popup-container {
            position: relative;
            padding: 40px 30px;
            max-width: 600px;
            width: 90%;
            background: rgba(20, 20, 25, 0.6); /* Glassmorphism background */
            backdrop-filter: blur(20px); /* Strong blur */
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle border */
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            z-index: 0;
            animation: containerFadeIn 0.3s ease-out forwards;
        }

        @keyframes containerFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .disclaimer {
            color: #fff;
            text-align: center;
            font-family: inherit;
        }

        .disclaimer h2 {
            margin-top: 0;
            font-size: 28px;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .disclaimer p {
            margin: 15px 0;
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        .disclaimer a {
            color: #8CFF00;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .disclaimer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .disclaimer button {
            background: linear-gradient(135deg, #ff0040, #ff477e);
            border: none;
            padding: 12px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            color: #fff;
            box-shadow: 0 6px 20px rgba(255, 0, 64, 0.4);
            transition: all 0.3s ease;
            margin-top: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .disclaimer button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 0, 64, 0.6);
        }

        .disclaimer button:active {
            transform: translateY(1px);
            box-shadow: 0 4px 15px rgba(255, 0, 64, 0.4);
        }
 /* Container for horizontal scrolling */
  .card-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 5vw; /* Space between cards */
    padding: 10px;
    box-sizing: border-box;
    scroll-padding-left: 10px;
    width: calc(100vw - 10px); /* Prevent overflow */
  }

  .card-container::-webkit-scrollbar {
    display: none; /* Hides scrollbar */
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes rotateBorder {
    to {
      --angle: 360deg;
    }
  }

  /* Card Styles */
  .card1, .card2 {
    flex: 0 0 70vw; /* Smaller width to avoid overflow */
    max-width: 500px; /* Ensures cards are responsive */
    border-radius: 20px;
    background: rgba(31, 31, 31, 0.25);
    border: 1px solid transparent;
    backdrop-filter: blur(10px); /* Glassmorphism blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Depth shadow */
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1em;
    box-sizing: border-box;
    scroll-snap-align: start; /* Aligns properly on scroll */
    position: relative;
  }

  .card1::before, .card2::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from var(--angle), transparent 0%, #ff0040 12.5%, #ff7300 62.5%, transparent 75%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s alternate infinite linear;
    pointer-events: none;
  }

  .card1 .card__title1, .card2 .card__title2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.2rem;
  }

  .card1 .card__logo1, .card2 .card__logo2 {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .card1 .card__info1, .card2 .card__info2 {
    display: flex;
    margin-top: auto;
    font-size: 0.8rem;
    color: #f9f9f9b2;
    font-weight: 400;
    justify-content: space-between;
  }

  .card1 .card__btns1, .card2 .card__btns2 {
    display: flex;
    gap: 0.6rem;
  }

  .card1 button, .card2 button {
    border: none;
    background: #00b9ae;
    color: #fff;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.2s;
  }

  .card1 button:hover, .card2 button:hover {
    opacity: 0.8;
    transform: scale(0.9);
  }

  .card2 .watch-btn2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 41, 41, 0.3);
    border: 1px solid rgba(255, 41, 41, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
  }

  .card1 .watch-btn1 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(116, 56, 255, 0.3);
    border: 1px solid rgba(116, 56, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
  }

  .card1 .watch-btn1:hover, .card2 .watch-btn2:hover {
    opacity: 0.8;
    transform: scale(0.9);
  }

  .card1 .add-btn1, .card2 .add-btn2 {
    background: #ffffff;
    opacity: 1;
  }        body,
        html {
            height: 100%;
            margin: 0;
            font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            background-color: #121212;
            color: #fff;
            position: relative;
            overflow-x: hidden;
        }

        /* Dark wave opacity tweaked for OTT */
        .wave path {
            opacity: 0.15;
        }

        /* Wave Animation Container */
        .wave-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100%;
            opacity: 1;
            animation: wave-animation 20s linear infinite;
        }

        .wave svg {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .wave1 {
            animation-duration: 20s;
            animation-direction: normal;
            opacity: 1;
        }

        .wave2 {
            animation-duration: 25s;
            animation-direction: reverse;
            animation-delay: -5s;
            opacity: 1;
        }

        .wave3 {
            animation-duration: 30s;
            animation-direction: normal;
            animation-delay: -10s;
            opacity: 1;
        }

        .wave4 {
            animation-duration: 22s;
            animation-direction: reverse;
            animation-delay: -2s;
            opacity: 1;
        }

        .wave5 {
            animation-duration: 28s;
            animation-direction: normal;
            animation-delay: -7s;
            opacity: 1;
        }

        .wave6 {
            animation-duration: 24s;
            animation-direction: reverse;
            animation-delay: -12s;
            opacity: 1;
        }

        @keyframes wave-animation {
            0% {
                transform: translateX(0) translateY(0);
            }
            50% {
                transform: translateX(-25%) translateY(-15px);
            }
            100% {
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Ensure content is above waves */
        .content_wrapper {
            position: relative;
            z-index: 1;
        }

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.25); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Glassmorphism blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Depth shadow */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}



        .image_wrapper img {
            height: 8vw;
            max-height: 50px;
        }

        .profile_icon img {
            height: 8vw;
            max-height: 50px;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            top: 5px;
        }

        h2 {
            font-size: 0.2rem;
            margin-bottom: 20px;
            font-family: 'Quantify', Arial, sans-serif;
        }

        .select_profile {
            font-size: 1.4rem;
            font-weight: bold;
            color: #8CFF00;
        }

        .content_wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 80px;
        }

        /* --- OTT Swimlanes & Layout --- */
        .ott-row-container {
            width: 100%;
            margin-bottom: 30px;
            padding-left: 20px;
            box-sizing: border-box;
        }

        .ott-row-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #e5e5e5;
            margin-bottom: 10px;
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ott-swimlane {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 15px;
            padding-bottom: 15px; /* for shadow clipping */
            padding-right: 20px; /* spacing at end */
        }

        .ott-swimlane::-webkit-scrollbar {
            display: none;
        }

        .ott-card {
            flex: 0 0 auto;
            width: 40vw; /* Shows roughly 2.1 cards on mobile screen */
            max-width: 160px; /* Stops cards from stretching too much */
            aspect-ratio: 55 / 45;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            scroll-snap-align: start;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            background: #2a2a2a;
        }

        @media (min-width: 768px) {
            .ott-card {
                width: 250px;
                max-width: 250px;
            }
            .ott-row-container {
                padding-left: 40px;
            }
            .ott-swimlane {
                gap: 20px;
            }
        }

        .ott-card:hover {
            transform: scale(1.08); /* Cinematic pop out */
            box-shadow: 0 10px 25px rgba(0,0,0,0.8);
            z-index: 10;
        }

        .ott-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .ott-card-title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px 10px 10px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ott-card:hover .ott-card-title {
            opacity: 1;
        }


        /* Popup Styling */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(20, 20, 25, 0.6); /* Glassmorphism background */
            backdrop-filter: blur(20px); /* Strong blur */
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle border */
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 24px;
            width: 85%;
            max-width: 360px;
            text-align: center;
            z-index: 1000;
            color: #fff;
            animation: popupFadeIn 0.3s ease-out forwards;
        }

        @keyframes popupFadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -45%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .popup > img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.15);
            object-fit: cover;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .popup > img:hover {
            transform: scale(1.05);
        }

        .popup .username {
            color: #fff;
            margin: 15px 0 25px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .popup .username input {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 1.2rem;
            padding: 10px 15px;
            border-radius: 10px;
            width: 100%;
            max-width: 220px;
            outline: none;
            transition: all 0.3s ease;
            text-align: center;
            font-family: inherit;
        }

        .popup .username input:focus {
            border-color: #ff0040;
            box-shadow: 0 0 10px rgba(255, 0, 64, 0.3);
            background: rgba(0, 0, 0, 0.6);
        }

        .popup .username img {
            cursor: pointer;
            width: 24px;
            height: 24px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .popup .username img:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .popup button {
            background: linear-gradient(135deg, #ff0040, #ff477e);
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            color: #fff;
            box-shadow: 0 6px 20px rgba(255, 0, 64, 0.4);
            transition: all 0.3s ease;
            width: 80%;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .popup button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 0, 64, 0.6);
        }

        .popup button:active {
            transform: translateY(1px);
            box-shadow: 0 4px 15px rgba(255, 0, 64, 0.4);
        }

        .close-popup {
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            line-height: 1;
        }

        .close-popup:hover {
            color: #fff;
            transform: rotate(90deg);
        }

        .popup .close-popup button {
            background: none;
            border: none;
            color: inherit;
            font-size: inherit;
            padding: 0;
            box-shadow: none;
            width: auto;
            margin: 0;
            line-height: inherit;
            cursor: pointer;
        }

        .popup .close-popup button:hover {
            transform: none;
            box-shadow: none;
        }









    .footer-nav {
      position: fixed;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%) translateY(-5px); /* Slight uplift for 3D effect */
      background: rgba(31, 31, 31, 0.25); /* Semi-transparent background */
      backdrop-filter: blur(10px); /* Glassmorphism blur effect */
      -webkit-backdrop-filter: blur(10px); /* Safari support */
      border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
      border-radius: 15px;
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Depth shadow */
      display: flex;
      justify-content: space-around;
      align-items: center;
      width: 90%;
      max-width: 400px;
      padding: 10px 0;
      z-index: 1000;
    }

    .footer-nav a {
      text-decoration: none;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-nav a:hover {
      color: #ff4747;
    }

    .footer-nav a.active {
      color: #ff4747;
    }

    .footer-nav a svg {
      width: 24px;
      height: 24px;
      margin-bottom: 4px;
      color: #fff;
      vertical-align: middle;
    }

    .footer-nav a.active svg {
      color: #ff4747;
    }

    .footer-nav a:hover svg {
      color: #ff4747;
    }

    .footer-nav a span {
      font-size: 12px;
    }




    /* Notification Popup Styles - iOS Dynamic Island inspired */
    .notification-popup {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 120px;
        max-width: 320px;
        height: auto;
        min-height: 36px;
        color: #fff;
        background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background */
        backdrop-filter: blur(20px); /* Strong glassmorphism blur */
        -webkit-backdrop-filter: blur(20px); /* Safari support */
        border: 1px solid rgba(255, 255, 255, 0.18); /* Subtle border */
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), 
                    inset 0 0 0 0.5px rgba(255, 255, 255, 0.1); /* Depth and inner glow */
        border-radius: 20px; /* Pill shape like Dynamic Island */
        overflow: hidden;
        cursor: pointer;
        z-index: 1000;
        display: flex;
        align-items: center;
        padding: 8px 16px;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth iOS-like animation */
    }
    .notification-popup:hover {
        transform: translateX(-50%) scale(1.02);
        box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5), 
                    inset 0 0 0 0.5px rgba(255, 255, 255, 0.15);
    }
    .notification-popup img {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        object-fit: cover;
        flex-shrink: 0;
    }
    .notification-popup .content {
        flex: 1;
        min-width: 0; /* Allow content to shrink */
    }
    .notification-popup .content h4 {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #fff;
        line-height: 1.2;
    }
    .notification-popup .content p {
        margin: 2px 0 0 0;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    /* Media Queries */
    @media (min-width: 768px) {
        .notification-popup {
            max-width: 360px;
            padding: 10px 18px;
            gap: 12px;
            min-height: 40px;
        }
        .notification-popup img {
            width: 28px;
            height: 28px;
        }
        .notification-popup .content h4 {
            font-size: 14px;
        }
        .notification-popup .content p {
            font-size: 12px;
        }
    }
    
    @media (max-width: 480px) {
        .notification-popup {
            max-width: 280px;
            padding: 8px 14px;
            gap: 8px;
        }
        .notification-popup img {
            width: 22px;
            height: 22px;
        }
        .notification-popup .content h4 {
            font-size: 12px;
        }
        .notification-popup .content p {
            font-size: 10px;
        }
    }

    /* Splash Screen Styles */
    #splashScreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: opacity 2s ease-in-out;
    }

    .splash-logo {
        width: 60%;
        max-width: 300px;
        margin-bottom: 40px;
        animation: pulseLogo 1.5s infinite alternate;
    }

    @keyframes pulseLogo {
        0% { transform: scale(0.95); opacity: 0.8; }
        100% { transform: scale(1.05); opacity: 1; }
    }

    .loading-bar-container {
        width: 200px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        overflow: hidden;
    }

    .loading-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #ff0040, #ff7300);
        border-radius: 4px;
        animation: loadingProgress 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes loadingProgress {
        0% { width: 0%; }
        50% { width: 70%; }
        100% { width: 100%; }
    }

    .splash-greeting {
        margin-top: 25px;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        opacity: 0;
        animation: fadeInGreeting 0.5s ease-out 0.5s forwards;
    }

    @keyframes fadeInGreeting {
        to { opacity: 1; }
    }

    /* TV Page Specific Styles */
    .tv-page-title {
        color: #fff;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .tv-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
        max-width: 800px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    @media (min-width: 768px) {
        .tv-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }

    @media (min-width: 1024px) {
        .tv-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .tv-card {
        background: rgba(30, 30, 40, 0.4);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px 15px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 600;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 80px;
    }

    .tv-card:hover {
        transform: translateY(-8px) scale(1.02);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 15px 40px rgba(140, 255, 0, 0.2);
        color: #8CFF00;
    }

