/* Video Profil Section Styles */

.video-profil-section {
    padding: 60px 0;
    background-image: url('../Video/5356171.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
    position: relative;
}

.video-profil-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.video-profil-section .container {
    position: relative;
    z-index: 1;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
    padding-bottom: 80px;
}

/* TV Frame */
.tv-frame {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.1),
        inset 0 -2px 10px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(2deg);
    z-index: 2;
}

/* TV Screen (inner bezel) */
.tv-screen {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 0 3px #000;
    aspect-ratio: 16/9;
}


.profil-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

/* TV Stand/Bracket */
.tv-stand {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1;
}

.tv-stand-base {
    width: 300px;
    height: 20px;
    background: linear-gradient(to bottom, 
        #1a1a1a 0%, 
        #0f0f0f 50%, 
        #000 100%);
    border-radius: 10px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 0;
    margin-top: -90px;
}

.tv-stand-base::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 15px;
    background: linear-gradient(to bottom, 
        #2a2a2a 0%, 
        #1a1a1a 100%);
    border-radius: 5px 5px 0 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

/* TV Brand/Logo Area (optional decorative element) */
.tv-frame::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-profil-section {
        padding: 40px 15px;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0;
        padding: 15px;
        padding-bottom: 80px;
    }
    
    .tv-stand {
        bottom: -50px;
        height: 20px;
    }
    
    .tv-frame {
        padding: 10px;
        border-radius: 15px;
        transform: none;
    }
    
    .tv-screen {
        border-radius: 5px;
    }
    
    .tv-stand-base {
        width: 250px;
        height: 15px;
        margin-top: -90px;
    }
    
    .video-profil-section h2 {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {
    .video-profil-section {
        padding: 30px 10px;
    }
    
    .video-container {
        padding: 10px;
        padding-bottom: 60px;
    }
    
    .tv-stand {
        bottom: -40px;
        height: 20px;
    }
    
    .tv-frame {
        padding: 8px;
        border-radius: 12px;
        transform: none;
    }
    
    .tv-screen {
        border-radius: 4px;
    }
    
    .tv-stand-base {
        width: 200px;
        height: 12px;
        margin-top: -70px;
    }
    
    .tv-stand-base::before {
        width: 100px;
        height: 12px;
        top: -12px;
    }
    
    .video-profil-section h2 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }
}

