/* Navigation Bar */
nav {
    width: 100%;
    background-color: #4d2e95;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    flex-wrap: wrap;
}

nav a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

nav a:hover {
    background-color: #9bc444;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: center;
    background: url('https://mkadolls.com/images/side1.png') left top repeat-y, 
                url('https://mkadolls.com/images/side2.png') right top repeat-y, 
                url('https://mkadolls.com/images/greenb.png') center center no-repeat;
    background-size: 150px auto, 150px auto, cover;
}

.content-wrapper {
    width: 93%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    background-color: transparent;
}

header {
    background-color: rgba(255, 98, 161, 0.9);
    color: white;
    padding: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}

header img {
    max-width: 100%;
    height: auto;
}

.container {
    background-color: #a97ce2;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

.coming-soon {
    font-size: 2rem;
    font-weight: bold;
    color: #df5981;
    text-shadow: 2px 2px 10px #FF62A1;
}

.copyright {
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: #fff;
    background: #4d2e95;
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.instagram-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.instagram-links a img {
    width: 30px;
    height: 30px;
}

.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.info-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.info-text {
    text-align: left;
    width: 100%;
    font-size: 14px;
}

.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    background-color: #4d2e95;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.links a:hover {
    background-color: #df5981;
}

.go-back-container {
    text-align: center;
    margin-top: 20px;
}

.go-back-button {
    background-color: #9bc444;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.go-back-button:hover {
    background-color: #df5981;
}

/* --- NEW VIDEO STYLES --- */
.video-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    background: linear-gradient(45deg, #df5981, #4d2e95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
}

.play-button, .volume-button, .full-screen-button {
    background-color: #fff;
    border: 2px solid #4d2e95;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
}

.play-button:hover, .volume-button:hover, .full-screen-button:hover {
    background-color: #4d2e95;
    color: white;
    transform: scale(1.2);
}

.progress-bar {
    flex-grow: 1;
    margin: 0 10px;
    height: 5px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}

.progress-bar .filled {
    background-color: #df5981;
    height: 100%;
    width: 0%;
    border-radius: 10px;
}

.description {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.big-mobile5 {
    max-width: 50% !important;
    height: auto !important;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .video-wrapper {
        grid-template-columns: 1fr; 
    }

    .video-container {
        width: 90%;
        margin: 0 auto;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .big-mobile {
        max-width: 80% !important;
        height: auto !important;
    }
    .big-mobile4 {
        max-width: 1.5% !important;
        height: auto !important;
    }
    .big-mobile3 {
        max-width: 20% !important;
        height: auto !important;
    }
    .big-mobile2 {
        max-width: 100% !important;
        height: auto !important;
    } 
}

/* Gallery and Accessory Formatting */
.gallery-row {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    margin: 20px 0;
    width: 100%;
}

.gallery-row img {
    width: 200px !important; 
    max-width: 200px !important;
    height: auto !important;
    display: inline-block !important;
    border-radius: 5px;
}

.section-header {
    width: auto !important;
    max-width: 100% !important;
    display: block;
    margin: 20px auto 10px;
}

.circle-image {
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    border: 5px solid #9bc444; 
    object-fit: cover; 
    display: block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); 
}  

h3 {
    font-size: 1.4rem;
    font-weight: bold;
    -webkit-text-stroke: 1px #7d7df7; 
    color: white; 
    text-align: center;
    margin-top: 50px;
    text-transform: uppercase;
    text-decoration: underline; 
    letter-spacing: -1px; 
}

/* --- THE ONLY NEW ADDITION --- */
/* This specifically shrinks the commercial video on page 02 info */
.commercial-video {
    width: 100%;
    max-width: 500px !important; /* Forces it to stay small */
    margin: 20px auto;
    display: block;
}
/* New class for 125px gallery images */
.gallery-row-small {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
    margin: 20px 0;
    width: 100%;
}

.gallery-row-small img {
    width: 125px !important; 
    max-width: 125px !important;
    height: auto !important;
    display: inline-block !important;
    border-radius: 5px;
    transition: transform 0.2s;
}

.gallery-row-small img:hover {
    transform: scale(1.05); /* Optional: slight zoom when hovering */
}
.flex-break {
    flex-basis: 100%;
    height: 0;
}
.portal-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.portal-btn {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    display: inline-block !important;
    transition: transform 0.2s;
}

.portal-btn:hover {
    transform: scale(1.05);
}