@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.tv-container {
    position: relative;
    max-width: 900px;
    margin: 100px auto;
    background: #2b2b2b;
    border: 20px solid #222;
    border-radius: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.tv-screen {
    position: relative;
    border: 10px solid #444;
    border-radius: 15px;
    overflow: hidden;
    background: black;
}

.tv-screen img {
    display: block;
    width: 100%;
    height: auto;
}

.tv-knobs {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tv-knob {
    width: 30px;
    height: 30px;
    background: #555;
    border: 3px solid #333;
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.text-overlay {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Great Vibes', cursive;
    font-size: 3.5em;
    color: white;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
    pointer-events: none;
}


#mini-tv {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    width: 200px;
    height: 113px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 1000;
    margin-bottom: 50px !important;
}

.tv-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.tv-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.modal-lg .modal-body {
    padding: 0;
}

.modal-lg iframe {
    width: 100%;
    height: 500px;
    border: none;
    max-width: 100%;
    max-height: 80vh;
    object-fit: cover;
}

.modal-lg .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}


.carousel {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
}

.carousel-inner {
    text-align: center;
}

.carousel-item img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.text-warning {
    color: #f0ad4e !important;
}


.btn-custom {
    background-color: #c49f3c !important;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-custom:hover {
    background-color: #a4802e !important;
    color: #fff;
}

.dark-section {
    background-color: #1f1c1c;
}

.dark-section h5 {
    color: #c49f3c;
}

.dark-section ul {
    padding: 0;
    line-height: 1.8;
}

.dark-section li {
    color: #dcdcdc;
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .text-overlay {
        font-size: 1.5em;
    }

    .d-flex.flex-row-reverse {
        flex-direction: column-reverse;
    }

    .d-flex.flex-row-reverse .col-md-6 {
        width: 100%;
        text-align: center;
    }

    .d-flex.flex-row-reverse img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    body > header > nav > div {
        margin-inline: 11px !important;
    }

    #mini-tv {
        width: 100px;
        height: 56.5px;
    }
}

