/* --- SPRING STEP SHOW STYLING --- */

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Page Container */
.stepshow-main {
    padding-top: 180px; 
    padding-bottom: 100px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.stepshow-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #CFB53B; /* OLD GOLD */
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.gold-bar {
    width: 100px;
    height: 4px;
    background-color: #CFB53B;
    margin: 0 auto 50px auto;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Description */
.stepshow-description {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- FLOATING BUTTONS --- */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #CFB53B;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, bottom 0.1s linear, background-color 0.3s;
}

.floating-btn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-btn:hover {
    background-color: white;
    color: #CFB53B;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(207, 181, 59, 0.4);
}

.btn-home { left: 30px; }
.btn-top { right: 30px; }

/* Responsive */
@media (max-width: 768px) {
    .stepshow-header { font-size: 2rem; }
    .stepshow-main { padding: 140px 20px 80px 20px; }
    .floating-btn { width: 36px; height: 36px; font-size: 0.9rem; }
    .btn-home { left: 20px; }
    .btn-top { right: 20px; }
    .video-wrapper {
        overflow: visible;
    }
    .video-wrapper video {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        display: block;
        min-height: 180px;
    }
    /* Compact the native control bar so play/seek/mute/fullscreen fit a
       phone screen. Chromium-only (::-webkit-media-controls-* has no
       effect — and no equivalent — in Safari/iOS, where controls are
       fully native and unstylable). */
    .video-wrapper video::-webkit-media-controls-panel {
        padding: 0 2px;
    }
    .video-wrapper video::-webkit-media-controls-play-button,
    .video-wrapper video::-webkit-media-controls-mute-button,
    .video-wrapper video::-webkit-media-controls-fullscreen-button,
    .video-wrapper video::-webkit-media-controls-overflow-button {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .stepshow-header { font-size: 1.6rem; letter-spacing: 1px; }
    .stepshow-main { padding: 120px 12px 60px 12px; }
    .floating-btn { width: 32px; height: 32px; font-size: 0.8rem; }
    .btn-home { left: 12px; }
    .btn-top { right: 12px; }
}