
  .panel {
    overflow: auto;
    height: 40vh;
    position: relative;
 
  }
  
  .jj {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 15vh;
    color: #fff;
    line-height: 0.85;
    text-transform: uppercase;
 
    background-size: contain;
    -webkit-text-fill-color: rgb(19 1 1 / 37%);
    -webkit-background-clip: text;
    z-index: 10;
    @media(max-width:500px){
        font-size: 12vh;
    }
  }
  
 
  
  .jj + .jj {
    -webkit-text-fill-color: #c52525;
    z-index: 20;
    animation: meh 3s ease-out infinite alternate;
  }
  
  @keyframes meh {
    from {
      clip-path: polygon(100% 0, 100% 100%, 20% 100%, 61% 91%, 94% 47%);
    }
    50% {
      clip-path: polygon(100% 0, 100% 100%, 20% 100%, 59% 52%, 74% 13%);
    }
    to {
      clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 85%, 87% 41%);
    }
  }
  
  .jj span {
    display: block;
  }
  
  @font-face {
    font-family: 'JJ';
    src: url('GothicNo13BT-Regular.eot');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'JJ';
    src: url('') format('woff2'), url('') format('woff'),
         url('GothicNo13BT-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  

.card-contianer {


    width: 100%;
    height: 90vh;
    margin-top: 3%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;


}

.card {
    padding: 20px;
    border: none
}

.card-container:hover .card:not(:hover) {
    opacity: 0.5;
}

.tv {
    width: var(--television-width);
    height: var(--television-height);
    display: flex;
    flex-direction: column;
    align-items: center;

    & .antenna-container {
        width: 235px;
        height: 85px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;

        & .antenna {
            width: 100%;
            height: 4px;
            background: var(--antenna-gradient);
            transform-origin: 100% 50%;
            transform: rotate(20deg) translateY(3px);
            z-index: 0;
            display: flex;
            align-items: center;

            &::before {
                content: "";
                display: block;
                width: 8px;
                height: 10px;
                background: var(--antenna-gradient);
                border-radius: 24% 53% 53% 24% / 36% 40% 40% 36%;
                border: 1px solid #444;
                border-left: 0;
                border-bottom: 0;
                transform: translateY(-1px);
            }
        }
    }

    & .television-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;

        & .television {
            width: 425px;
            height: 300px;
            border-radius: 35px / 45px;
            box-shadow:
                2px 2px 5px #0004,
                2px -2px 2px darkred inset,
                2px 1px 1px #fff inset,
                0 0 3px 5px #0002;
            background: var(--television-bgcolor);
            background: linear-gradient(var(--television-bgcolor), var(--television-bgcolor-dark));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            @media(max-width:500px){
                width: 350px;
            }
            & .television-inner {
                width: 93%;
                height: 90%;
                background: linear-gradient(to bottom, #454c45 5%, #232522 35% 45%);
                border-bottom: 1px solid #fff;
                box-shadow: 0 1px 2px #470404 inset;
                border-radius: 25px / 25px;
                position: relative;
                display: grid;
                grid-template-columns: 3fr 1fr;
                grid-template-rows: 0.8fr;
                align-content: center;
                gap: 3px;

                & .television-screen-container {
                    border: 1px solid #222;
                    box-shadow:
                        0 2px 2px #888,
                        2px 0 2px #444,
                        -2px 0 2px #444,
                        0 -2px 2px #111;
                    border-radius: 35px / 25px;
                    margin: 10px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background:
                        linear-gradient(70deg, #555 15%, transparent 30%),
                        repeating-conic-gradient(#222 0 30deg, #333 60deg, #222 90deg);

                    & .television-crt {
                        width: 99%;
                        height: 95%;
                        background: #111;
                        box-shadow:
                            0 0 5px 2px #111,
                            0 0 10px 2px #1112;
                        border-radius: 85px 85px 85px 85px / 100px 100px 100px 100px;
                        overflow: hidden;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        & .television-screen {
                            width: 95%;
                            height: 95%;
                            border-radius: 30%;
                            box-shadow: 0 0 5px 2px #111 inset;
                            position: relative;

                            & .noise {
                                width: 100%;
                                height: 100%;
                                background:
                                    linear-gradient(to bottom, transparent, #aaa4, #8881, #6664, #4445, #2228, #4443, transparent),
                                    repeating-linear-gradient(transparent 0 2px, #25242950 2px 4px);
                                animation: moveBand 8s linear infinite;
                                z-index: 4;
                                position: relative;
                            }

                            & .off {
                                width: 100%;
                                height: 100%;
                                background: radial-gradient(#222, #1a1a1a, #111);
                                z-index: 5;
                                position: absolute;
                                top: 0;
                            }

                            & .logo-container {
                                position: absolute;
                                z-index: 0;
                                height: 139%;
                                display: flex
;
                                right: 10%;
                                top: -9%;

                                & .logo {
                                    background: #f34b59;
                                    width: 45px;
                                    height: 32px;
                                    border-radius: 8px;
                                    margin-right: 5px;
                                    display: grid;
                                    place-items: center;

                                    & .play {
                                        width: 15px;
                                        height: 15px;
                                        background: #fff;
                                        clip-path: polygon(0 0, 100% 50%, 0 100%);
                                    }
                                }

                                & .text {
                                    font-family: "Heading Pro", sans-serif;
                                    font-size: 37px;
                                    color: white;
                                    letter-spacing: -1px;
                                }
                            }
                        }
                    }
                }

                & .television-lateral {
                    display: grid;
                    grid-template-rows: 1.1fr 1fr;
                    gap: 12px;
                    margin: 15px;
                    margin-left: 0;

                    & .dial-container {
                        border: 2px solid #333;
                        border-left: 1px solid #444;
                        border-bottom: 2px solid #444;
                        border-radius: 5px;
                        box-shadow:
                            -2px 2px 6px #111 inset,
                            -1px 2px 3px #aaa;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 6px;
                        align-items: center;

                        & .dial {
                            width: 42px;
                            height: 42px;
                            border: 2px solid #6e706f;
                            border-radius: 50%;
                            box-shadow:
                                -4px 2px 4px #111,
                                0 0 1px 2px #000;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            position: relative;
                            cursor: grab;

                            & .data-container {
                                display: flex;
                                justify-content: center;
                                width: 100%;
                                height: 100%;

                                & .data {
                                    color: #888;
                                    font-size: 6px;
                                    text-shadow: 0 0 2px #888;
                                    position: absolute;
                                    top: 0;
                                    height: 100%;
                                    transform-origin: 50% 50%;

                                    &:nth-child(2) {
                                        transform: rotate(30deg);
                                    }

                                    &:nth-child(3) {
                                        transform: rotate(60deg);
                                    }

                                    &:nth-child(4) {
                                        transform: rotate(90deg);
                                    }

                                    &:nth-child(5) {
                                        transform: rotate(120deg);
                                    }

                                    &:nth-child(6) {
                                        transform: rotate(150deg);
                                    }

                                    &:nth-child(7) {
                                        transform: rotate(180deg);
                                    }

                                    &:nth-child(8) {
                                        transform: rotate(210deg);
                                    }

                                    &:nth-child(9) {
                                        transform: rotate(240deg);
                                    }

                                    &:nth-child(10) {
                                        transform: rotate(270deg);
                                    }

                                    &:nth-child(11) {
                                        transform: rotate(300deg);
                                    }

                                    &:nth-child(12) {
                                        transform: rotate(330deg);
                                    }
                                }
                            }

                            & .dial-core {
                                width: 28px;
                                height: 28px;
                                border-radius: 50%;
                                background: conic-gradient(#eee 0deg 45deg, #666 70deg 285deg, #eee 320deg);
                                position: absolute;
                            }

                            & .selector {
                                position: absolute;
                                width: 75%;
                                background: linear-gradient(#666 30%, #aaa 40%);
                                height: 4px;
                                border: 1px solid #666;
                                border-radius: 4px / 8px;
                                transform: rotate(calc(var(--value) - 90deg));
                                transition: transform 0.25s linear;
                            }

                            &.channel-button {
                                background: #000;
                            }

                            &.volume-button {
                                background: #ccc;

                                & .data {
                                    color: #444;
                                }
                            }
                        }
                    }

                    & .speaker-container {
                        display: grid;
                        grid-template-columns: repeat(6, 1fr);
                        gap: 1px 0;
                        margin-bottom: 12px;
                        margin-left: 2px;
                        margin-right: 2px;

                        & div {
                            width: 10px;
                            height: 10px;
                            background: radial-gradient(#000, #222);
                            border-radius: 50%;
                            border-bottom: 1px solid #fff;
                        }
                    }
                }

                & .buttons {
                    position: absolute;
                    bottom: 5px;
                    right: 30px;
                    width: 60px;
                    display: flex;
                    justify-content: space-between;

                    & .button-container {
                        width: 20px;
                        height: 20px;
                        background: linear-gradient(to bottom, #fff 40%, #aaa 50% 55%, #666 70%);
                        border-radius: 50%;
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        & .button {
                            width: 10px;
                            height: 10px;
                            border-radius: 50%;
                            background: linear-gradient(to top, #fff 40%, #aaa 50% 55%, #666 70%);
                            box-shadow: -1px -1px 1px 2px #000;
                            transform: translate(2px, 1px);
                            transition:
                                transform 0.1s,
                                box-shadow 0.1s;
                            cursor: pointer;

                            &:active {
                                transform: translate(0, 0);
                                box-shadow: 0 0 1px 2px #000;
                            }
                        }
                    }
                }
            }
        }

        & .television-base {
            width: 350px;
            height: 25px;
            background: linear-gradient(var(--television-bgcolor), var(--television-bgcolor-dark));
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 8px 4px #0009;

            &::before,
            &::after {
                content: "";
                display: block;
                width: 8px;
                height: 100%;
                background-color: var(--television-bgcolor);
                background-image: linear-gradient(var(--television-bgcolor), var(--television-bgcolor-dark));
                transform: translateX(var(--x)) skewX(var(--skew-x));
            }

            &::before {
                --skew-x: 10deg;
                --x: -2px;
            }

            &::after {
                --skew-x: -10deg;
                --x: 2px;
            }

            & .slots {
                width: 50%;
                height: 15px;
                display: flex;
                justify-content: center;

                & .slot {
                    width: 4px;
                    height: 100%;
                    background: #0b0000;
                    margin-left: 3px;
                    border-radius: 2px / 1px;
                }
            }
        }

        & .foot-container {
            width: 70%;
            display: flex;
            justify-content: space-between;

            & .foot {
                width: 20px;
                height: 10px;
                background: var(--television-bgcolor);

                &.left {
                    box-shadow: 4px 0 #850101;
                }

                &.right {
                    box-shadow: -4px 0 #850101;
                }
            }
        }
    }
}


.tv .off {
    transition: opacity 0.5s;
    opacity: 1;
}

.tv:not(.on) .off {
    opacity: 0;
}

@keyframes moveBand {
    0% {
        background-position-y: 0, 0;
    }

    100% {
        background-position-y: -221px, -150px;
    }
}

.created {
    background:
        url(https://assets.codepen.io/154065/internal/avatars/users/default.png),
        linear-gradient(to bottom, #884ced, #ec1cce);
    background-size: 75px 75px, cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 2em;

    & span,
    & h2,
    & p,
    & a {
        font-family: Montserrat;
        margin: 0;
    }

    & a,
    & p,
    & span {
        color: #fff;
    }

    & h2 {
        font-weight: 700;
        transform: translate(0, -4px);
    }

    & a {
        text-decoration-color: rgba(255, 255, 255, 0.4);
    }

    & a:hover {
        color: #e6e82a;
    }
}


.container .card {
    position: relative;
    height: 215px;
    max-width: 300px;
    background: linear-gradient(var(--television-bgcolor), var(--television-bgcolor-dark));
    margin: 30px 10px;
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    border: 2px solid #222;
    border-radius: 8px;
}


.container .card::before,
.container .card::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
    background-color: #000;
    opacity: 0.8;
    display: flex;
    justify-content: space-around;
}

.container .card::before {
    top: -25px;
    right: 3px;
}

.container .card::after {
    top: 100%;
    right: 1px;
    margin-top: 5px;
}

.container .card::before span,
.container .card::after span {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #FFF;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
}

.container .card .side-bar {
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
    background-color: #222;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.container .card .side-bar.left {
    left: -25px;
}

.container .card .side-bar.right {
    right: -25px;
}

.container .card .side-bar .hole {
    width: 8px;
    height: 8px;
    background-color: #FFF;
    border-radius: 50%;
    margin: 8px 0;
}

.container .card:hover {
    height: 590px;

}


.container .card .content {
    position: relative;
    margin-top: -160px;
    padding: 40px 15px;
    text-align: center;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.container .card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -30px;
    transition-delay: 0.3s;
}

.card .content .btn {
    text-decoration: underline;
    color: #fff;
    background-color: transparent;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.card .content .btn:hover {
    color: #000;
    background-color: var(--color3);
}


a {
    color: var(--color3);
    text-decoration: underline;
}

.header{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    
}
#px{
    padding-top: 3rem;
}
@media(max-width:992px)
{
    .header{
    flex-direction: column;
    }
    #px-5{
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        line-height: 35px;
    }
    .mb-0 {
        width: 100%;
    }
}
.row{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    border-radius: .25rem;
    
}

button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    color: white;
    text-shadow: 2px 2px rgb(116, 116, 116);
    text-transform: uppercase;
    cursor: pointer;
    border: solid 2px black;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 10px;
    background-color: hsl(0, 100%, 9%);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    width: 15vh;
    height: 4vh;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
  
  button:active {
    transform: scale(0.9);
    transition: all 100ms ease;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}
  
  button img.logo {
    transition: all 0.5s ease;
    /*Addsmoothtransition*/z-index: 2;
    /*Ensureitstaysontop*/width: 5vh;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
  
  button:hover img.logo {
    transform: scale(3) translate(6%);
    /*Animatelogo*/
    -webkit-transform: scale(3) translate(6%);
    -moz-transform: scale(3) translate(6%);
    -ms-transform: scale(3) translate(6%);
    -o-transform: scale(3) translate(6%);
}
  
  .now {
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    z-index: 2;
  }
  
  button:hover .now {
    transform: translateX(10px);
    transition-delay: 300ms;
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}
  
  .play {
    transition: all 0.5s ease;
    transition-delay: 300ms;
  }
  
  button:hover .play {
    transform: translateX(200%);
    transition-delay: 150ms;
  }
  





 

.button-cd::after {
    content: '';
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.button-cd:hover {
    transform: scale(1.1);
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.3),
        0 6px 8px rgba(0, 0, 0, 0.6);
}

 



 
.cd {
    position: relative;  
    width: 150px;
    height: 150px;
    margin: 50px auto;
}

 
.button-cd {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    background: radial-gradient(circle, #f5f5f5, #d4d4d4, #909090);
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 4px 6px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    animation: spin 4s linear infinite;  
    z-index: 1;  
    cursor: pointer;
}

 
.fixed-text {
    position: absolute;
    top: 50%;
    left: 14%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: 39px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    width: 93px;
}

 
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


 







  

