/* Prevent selection and dragging */
.mnl-hero-section * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

/* Base Hero Section */
.mnl-hero-section {
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    overflow: hidden;
}

.mnl-hero-row {
    min-height: auto;
}

/* Left Column - Content */
.mnl-hero-content-col {
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Gradient Circle Effect */
.mnl-hero-content-col::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0.1%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.mnl-hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* Logo Text */
.mnl-hero-logo {
    font-size: 4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1;
}

/* Motto Heading */
.mnl-hero-motto {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Download Buttons Group */
.mnl-hero-download-group {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* Store Button */
.mnl-hero-store-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    border: 2px solid #000000;
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.mnl-store-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #000000;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.mnl-hero-store-btn:hover .mnl-store-fill {
    height: 100%;
}

.mnl-store-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mnl-store-content i {
    font-size: 2rem;
    transition: color 0.3s ease 0.2s;
}

.mnl-hero-store-btn:hover .mnl-store-content i,
.mnl-hero-store-btn:hover .mnl-store-text {
    color: #ffffff;
}

.mnl-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: color 0.3s ease 0.2s;
}

.mnl-store-label {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mnl-store-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Available Soon Text */
.mnl-hero-available {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Right Column - Video */
.mnl-hero-video-col {
    height: auto;
    padding: 0 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mnl-hero-video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 24px;
}

.mnl-hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Overlay - Prevents all interactions */
.mnl-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
}

/* Disable video controls completely */
.mnl-hero-video::-webkit-media-controls {
    display: none !important;
}

.mnl-hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.mnl-hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.mnl-hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.mnl-hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* ===================================== */
/* RESPONSIVE DESIGN */
/* ===================================== */

/* Tablet */
@media (max-width: 991px) {
    .mnl-hero-section {
        padding: 50px 0 60px;
    }

    .mnl-hero-row {
        min-height: auto;
    }

    .mnl-hero-content-col {
        padding: 60px 40px;
    }

    .mnl-hero-content-col::before {
        width: 450px;
        height: 450px;
        right: -150px;
    }

    .mnl-hero-logo {
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .mnl-hero-motto {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }

    .mnl-hero-video-col {
        height: auto;
        margin-top: 40px;
        padding: 0 20px 20px 20px;
    }

    .mnl-hero-video-wrapper {
        border-radius: 20px;
    }

    .mnl-hero-download-group {
        gap: 15px;
    }

    .mnl-hero-store-btn {
        min-width: 180px;
        padding: 14px 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mnl-hero-section {
        padding: 30px 0 40px;
    }

    .mnl-hero-content-col {
        padding: 40px 20px;
        text-align: left;
    }

    .mnl-hero-content-col::before {
        width: 350px;
        height: 350px;
        right: -100px;
    }

    .mnl-hero-content {
        max-width: 100%;
    }

    .mnl-hero-logo {
        font-size: 2.5rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .mnl-hero-motto {
        font-size: 1.75rem;
        margin-bottom: 35px;
    }

    .mnl-hero-download-group {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .mnl-hero-store-btn {
        width: 100%;
        min-width: auto;
        padding: 14px 20px;
        justify-content: flex-start;
    }

    .mnl-hero-available {
        font-size: 0.8125rem;
        margin-top: 20px;
    }

    .mnl-hero-video-col {
        height: auto;
        margin-top: 30px;
        padding: 0 15px 15px 15px;
    }

    .mnl-hero-video-wrapper {
        border-radius: 16px;
    }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
    .mnl-hero-content-col::before {
        width: 300px;
        height: 300px;
        right: -80px;
    }

    .mnl-hero-logo {
        font-size: 2rem;
    }

    .mnl-hero-motto {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .mnl-hero-video-col {
        height: auto;
        padding: 0 10px 10px 10px;
    }

    .mnl-hero-video-wrapper {
        border-radius: 12px;
    }

    .mnl-store-content i {
        font-size: 1.75rem;
    }

    .mnl-store-label {
        font-size: 0.6875rem;
    }

    .mnl-store-name {
        font-size: 1rem;
    }
}