:root {
    /* Color Palette - Dark Premium Blue */
    --primary-bg: #0f172a;
    --secondary-bg: #1e293b;
    --card-bg: rgba(30, 41, 59, 0.85);
    /* Slightly more opaque for readability */
    --gold-accent: #38bdf8;
    --gold-dark: #0284c7;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --white: #ffffff;
    --border-color: rgba(56, 189, 248, 0.2);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --max-width: 480px;
    --border-radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #000000;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Container */
.app-container {
    width: 100%;
    max-width: var(--max-width);
    background-color: var(--secondary-bg);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--gold-accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.3) 0%, rgba(30, 30, 30, 1) 100%), url('../assets/images/S3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 130px;
    height: 130px;
    /* Badge Style: Round container */
    background: #fff;
    /* White background to blend with jpg logo if needed, or transparent */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 2px solid var(--gold-accent);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Key Fix: Frame the square image as a round badge */
    border-radius: 50%;
}

.brand-name {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    color: var(--gold-accent);
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Main Content Area */
.action-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    border-radius: 30px 30px 0 0;
    padding: 30px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.bio-text {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Button Stack */
.button-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-accent));
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: none;
    cursor: pointer;
}

.secondary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: var(--gold-accent);
    color: var(--secondary-bg);
}

.primary-btn:active,
.secondary-btn:active {
    transform: scale(0.98);
}

/* Social Grid */
.quick-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: 0.3s;
}

.icon-btn:hover {
    background: var(--gold-accent);
    color: var(--secondary-bg);
    border-color: var(--gold-accent);
}

.action-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.flip-icon {
    transform: scaleX(-1);
    display: inline-block;
}

/* Section Styling */
.section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--gold-accent);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    display: block;
    width: 100%;
}

.section-title::after {
    /* Remove the light theme underline artifact */
    content: none;
}

/* Slider */
.product-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px 20px;
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 10px;
    display: flex;
    justify-content: center;
}

.shop-btn {
    padding: 6px 12px;
    background: var(--white);
    color: #000;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Video Shorts */
.video-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
    display: none;
}

.video-thumb {
    min-width: 100px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Form */
.contact-form {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--gold-accent);
    color: var(--secondary-bg);
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
}

.video-content {
    position: relative;
    width: 90%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.video-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 12px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.6);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.close-modal:hover {
    color: var(--gold-accent);
}

/* Scroll Enhancements */
.product-slider,
.video-grid {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.product-card,
.video-thumb {
    scroll-snap-align: start;
    flex: 0 0 auto;
    cursor: pointer;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gold-accent);
    color: var(--secondary-bg);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

@media (min-width: 768px) {
    .app-container {
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 40px auto;
    }
}