/* ==========================================
   CSS Variables & Theme Setup
========================================== */
:root {
    /* Dark Theme (Modern Deep Space) - Default */
    --main-color: #4fc1ff; 
    --main-color-hover: #7cd3ff;
    
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-overlay: rgba(13, 17, 23, 0.8);
    --glass-bg: rgba(22, 27, 34, 0.85);
    
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    
    --border-color: #30363d;
    --nav-text: #ffffff;
    --header-bg: transparent;
    --footer-bg: #010409;
    --footer-text: #8b949e;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --glow-color: rgba(79, 193, 255, 0.15);
}

/* ==========================================
   Reset & Base Styles
========================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; /* Increased base size */
    font-weight: normal;
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--main-color);
}

img {
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    border-radius: 8px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#outer-wrapper {
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-width: 100%;
    width: 100%;
    background-color: transparent;
}

/* ==========================================
   Navigation Menu
========================================== */
.tm-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-overlay);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.tm-menu2 {
    width: 100%;
    height: 60px; /* Spacer */
}

.menu-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.menu-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

#menu-items {
    display: flex;
    align-items: center;
}

#menu-items > li {
    position: relative;
}

#menu-items > li > a {
    color: var(--nav-text);
    font-size: 14px;
    line-height: 60px;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 0 15px;
    letter-spacing: 1px;
    position: relative;
}

/* Hover underline effect */
#menu-items > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--main-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
#menu-items > li:hover > a::after {
    transform: scaleX(1);
}
#menu-items > li:hover > a {
    color: var(--main-color);
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border-top: 3px solid var(--main-color);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
#menu-items > li:hover .submenu {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.submenu li:last-child a { border-bottom: none; }
.submenu li a:hover {
    background: rgba(79, 193, 255, 0.1);
    color: var(--main-color);
    padding-left: 25px;
}

/* Theme Switcher */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.theme-toggle-btn {
    background: transparent;
    border: none;
    color: var(--nav-text);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.theme-toggle-btn:hover {
    color: var(--main-color);
    transform: rotate(15deg);
}

/* ==========================================
   Hero Header (Dynamic & Premium)
========================================== */
#header {
    padding: 60px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(79, 193, 255, 0.1) 0%, var(--bg-primary) 70%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Moving Glowing Sparkles Background */
#header::before, #header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

#header::before {
    box-shadow: 
        10vw 20vh 1px 1px #fff, 25vw 45vh 2px 1px rgba(79, 193, 255, 0.9), 
        40vw 10vh 1px 0px #fff, 55vw 60vh 3px 1px rgba(79, 193, 255, 0.6), 
        70vw 30vh 1px 1px #fff, 85vw 80vh 2px 1px rgba(79, 193, 255, 0.9),
        15vw 70vh 1px 0px #fff, 30vw 15vh 3px 1px rgba(79, 193, 255, 0.6),
        50vw 40vh 1px 1px #fff, 65vw 85vh 2px 1px rgba(79, 193, 255, 0.9),
        80vw 20vh 1px 0px #fff, 95vw 50vh 3px 1px rgba(79, 193, 255, 0.6),
        5vw 90vh 1px 1px #fff, 90vw 10vh 2px 1px rgba(79, 193, 255, 0.9),
        45vw 75vh 1px 0px #fff, 20vw 5vh 3px 1px rgba(79, 193, 255, 0.6),
        35vw 35vh 1px 1px #fff, 60vw 25vh 2px 1px rgba(79, 193, 255, 0.9);
    animation: starsMove 120s linear infinite, twinkle 4s ease-in-out infinite;
    opacity: 0.6;
}

#header::after {
    box-shadow: 
        12vw 25vh 2px 1px rgba(79, 193, 255, 0.7), 28vw 48vh 1px 0px #fff, 
        42vw 12vh 3px 1px rgba(79, 193, 255, 0.5), 58vw 62vh 1px 1px #fff, 
        72vw 32vh 2px 1px rgba(79, 193, 255, 0.7), 88vw 82vh 1px 0px #fff,
        18vw 72vh 3px 1px rgba(79, 193, 255, 0.5), 33vw 18vh 1px 1px #fff,
        52vw 42vh 2px 1px rgba(79, 193, 255, 0.7), 68vw 88vh 1px 0px #fff,
        8vw 15vh 1px 1px #fff, 92vw 35vh 2px 1px rgba(79, 193, 255, 0.7);
    animation: starsMove 180s linear infinite reverse, twinkle 6s ease-in-out infinite 1s;
    opacity: 0.4;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-100vh); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

#header-inner {
    position: relative;
    z-index: 1;
}

#header h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
}



#header .description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ==========================================
   Product Showcase (Alternating Layout)
========================================== */
#content-wrapper {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 60px auto;
    padding: 20px;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--glow-color);
    border-color: var(--main-color);
}

/* Alternating rows */
.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-content {
    flex: 1;
    padding: 20px 0;
}

.product-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.badge i {
    color: var(--main-color);
}

.stars i {
    color: #ffb800; /* Gold for stars */
}

.favorites i {
    color: #ff4757; /* Red for heart */
}

.product-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main-color);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    background: var(--main-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--glow-color);
}

/* ==========================================
   Footer
========================================== */
#jugas_footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

.footer-social-icons {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 26px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--main-color);
    transform: translateY(-5px);
}

.jugas_footer_copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================
   Responsive Design
========================================== */
@media (max-width: 992px) {
    .product-card, .product-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 20px;
    }
    
    .product-stats {
        justify-content: center;
    }
    
    #header h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .menu-wrap {
        padding: 0 20px;
    }
    
    #menu-items {
        display: none;
    }
    
    .theme-switch-wrapper {
        border-left: none;
    }
}

/* ==========================================
   Company Page Styles
========================================== */
.animated-title-container {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.animated-title-container::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 100px;
    background: var(--main-color);
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.8); opacity: 0.2; }
    100% { transform: scale(1.4); opacity: 0.7; }
}

.animated-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 10vw, 100px);
    font-weight: 900;
    margin: 0;
    letter-spacing: 5px;
}

.animated-title .letter {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-primary);
    animation: animated-title-fadeColor 5s infinite;
}

@keyframes animated-title-fadeColor {
    0%   { color: transparent; text-shadow: none; }
    20%  { color: var(--text-primary); text-shadow: 0 0 15px var(--glow-color); }
    80%  { color: var(--text-primary); text-shadow: 0 0 15px var(--glow-color); }
    100% { color: transparent; text-shadow: none; }
}

.animated-title .letter:nth-child(1)  { animation-delay: 0s; }
.animated-title .letter:nth-child(2)  { animation-delay: 0.2s; }
.animated-title .letter:nth-child(3)  { animation-delay: 0.4s; }
.animated-title .letter:nth-child(4)  { animation-delay: 0.6s; }
.animated-title .letter:nth-child(5)  { animation-delay: 0.8s; }
.animated-title .letter:nth-child(6)  { animation-delay: 1.0s; }
.animated-title .letter:nth-child(7)  { animation-delay: 1.2s; }
.animated-title .letter:nth-child(8)  { animation-delay: 1.4s; }
.animated-title .letter:nth-child(9)  { animation-delay: 1.6s; }
.animated-title .letter:nth-child(10) { animation-delay: 1.8s; }
.animated-title .letter:nth-child(11) { animation-delay: 2.0s; }
.animated-title .letter:nth-child(12) { animation-delay: 2.2s; }

.company-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-section {
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 20px 20px 60px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px var(--shadow-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--glow-color);
    border-color: var(--main-color);
}

.profile-pic-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-color);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.profile-pic-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-member:hover .profile-pic-wrapper {
    border-color: var(--main-color);
}

.team-member:hover .profile-pic-wrapper img {
    transform: scale(1.1);
}

.team-member h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.team-member p {
    margin: 8px 0 0;
    font-size: 16px;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: 600;
}

.team-member a {
    text-decoration: none;
    color: inherit;
    display: block;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Contact Page Styles
========================================== */
.contact-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-globe-container {
    flex: 1;
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.globe-wrapper {
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin-bottom: 20px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-primary);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px var(--glow-color);
}

.location-icon i {
    font-size: 24px;
    color: var(--main-color);
}

.location-text h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}

.location-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-container {
    flex: 1;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
    padding: 40px;
}

.contact-form-container h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.form-desc {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.tier-contact-form .form-group {
    margin-bottom: 20px;
}

.tier-contact-form input,
.tier-contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tier-contact-form input:focus,
.tier-contact-form textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--glow-color);
    border-color: var(--main-color);
}

.contact-card-item .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--main-color);
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-card-item:hover .icon-wrapper {
    background: var(--main-color);
    color: #fff;
}

.contact-card-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-card-item p {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

/* Specific Brands */
.discord-card:hover { border-color: #5865F2; box-shadow: 0 15px 30px rgba(88, 101, 242, 0.2); }
.discord-card:hover .icon-wrapper { background: #5865F2; }

.linkedin-card:hover { border-color: #0077b5; box-shadow: 0 15px 30px rgba(0, 119, 181, 0.2); }
.linkedin-card:hover .icon-wrapper { background: #0077b5; }

@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
    }
}

/* ==========================================
   Product Detail Page Styles
========================================== */
.product-detail-page #main-wrapper {
    background: transparent;
}

.product-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-detail-header .product-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.product-detail-header .product-stats {
    justify-content: center;
    margin-bottom: 20px;
}

.product-detail-header .product-summary {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.product-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.product-left-col {
    flex: 1;
    min-width: 300px;
    max-width: 60%;
}

.product-right-col {
    flex: 1;
    min-width: 300px;
}

/* Gallery */
.product-gallery {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.gallery-main-view {
    width: 100%;
    aspect-ratio: 1900/1300;
    background: #000;
    position: relative;
}

.gallery-main-view iframe,
.gallery-main-view img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
    display: block;
}

.gallery-main-view img {
    cursor: zoom-in;
}

/* Gallery Nav Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.gallery-nav:hover { background: var(--main-color); }
.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--main-color); }

.gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 15px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 4px;
}

.thumb-item {
    width: 120px;
    height: 68px; /* ~16:9 */
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover,
.thumb-item.active {
    opacity: 1;
    border-color: var(--main-color);
}

.play-icon-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.thumb-item:hover .play-icon-overlay {
    color: var(--main-color);
}

/* Actions */
.product-actions-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.product-actions-bar a {
    flex: 1;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color) !important;
}

/* Right Content */
.detail-section {
    margin-bottom: 40px;
}

.detail-section h3 {
    font-size: 24px;
    color: var(--main-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.detail-section p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li::before {
    content: '\f058'; /* Check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--main-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.tech-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tech-card ul {
    list-style: disc;
    padding-left: 20px;
}

.tech-card ul li {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .product-left-col, .product-right-col {
        max-width: 100%;
    }
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Improvements */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--nav-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .menu-wrap {
        padding: 0 20px;
    }

    #menu-items {
        display: none; /* Hide by default on mobile */
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        z-index: 99999;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }

    #menu-items.active {
        display: flex; /* Show when active */
    }

    #menu-items > li {
        width: 100%;
        text-align: center;
    }

    #menu-items > li > a {
        display: block;
        padding: 15px 0;
        font-size: 20px;
        line-height: 1.5;
        width: 100%;
    }

    #menu-items > li > a::after {
        display: none;
    }

    .submenu {
        position: static;
        display: block;
        background: rgba(79, 193, 255, 0.05);
        box-shadow: none;
        border: none;
        width: 100%;
        animation: none;
    }

    .submenu li a {
        padding: 12px 0;
        font-size: 16px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
