:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #e60000;
    --accent-glow: rgba(230, 0, 0, 0.4);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
}

.loader {
    text-align: center;
}

.loader-text {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 10px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar {
    width: 250px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: width 0.1s linear;
}

.loading-percent {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 2px;
}

/* Navigation */

  
  
  
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,5,0.9), transparent);
    backdrop-filter: blur(5px);
}





.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 40px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Canvas Hero */
#hero-sequence {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#hero-canvas {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.hero-title {
    font-size: 5vw;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-top: 20px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* Feature Sections Shared */
.feature-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 10%;
}
.feature-content {
    max-width: 800px;
    z-index: 10;
    position: relative;
}
.feature-content h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}
.feature-content p {
    font-size: 1.5rem;
    color: #999;
    line-height: 1.6;
}

/* 1. Carbon Fiber */
.carbon-section {
    background: #020202;
    text-align: left;
}
.carbon-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #050505,
        #050505 10px,
        #0a0a0a 10px,
        #0a0a0a 20px
    );
    opacity: 0.3;
    z-index: 1;
}
.carbon-content {
    width: 100%;
}
.glow-text {
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px var(--accent-glow);
}

/* 2. Honeycomb */
.honeycomb-section {
    background: linear-gradient(180deg, #020202, #0a0a0a);
    text-align: right;
    z-index: 1;
}

.honeycomb-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.hex {
    position: absolute;
    width: 200px;
    height: 200px;
}
.hex-1 { top: 10%; left: 10%; width: 400px; height: 400px; }
.hex-2 { bottom: -10%; right: 5%; width: 600px; height: 600px; }
.hex-3 { top: 40%; left: 50%; width: 150px; height: 150px; }
.hex-4 { bottom: 20%; left: 20%; width: 300px; height: 300px; }
.honeycomb-content {
    width: 100%;
}

/* 3. Scrub Typography */
.precision-section {
    background: #000;
    text-align: center;
}
.precision-content {
    width: 100%;
    max-width: 1200px;
}
.scrub-text {
    font-size: 5vw;
    font-weight: 800;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, #fff, #fff);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    -webkit-background-clip: text;
    background-clip: text;
}

/* Lifestyle Images Section */
.lifestyle-section {
    padding: 100px 5%;
    background: #020202;
}
.lifestyle-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.lifestyle-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(20,20,20,0.5);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
}
.lifestyle-card.reverse {
    flex-direction: row-reverse;
}
.lifestyle-img {
    width: 50%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}
.lifestyle-card.reverse .lifestyle-img {
    height: auto;
    max-height: 450px;
    object-fit: contain;
}
.lifestyle-card:hover .lifestyle-img {
    transform: scale(1.02);
}
.lifestyle-text {
    width: 50%;
    padding: 40px;
}
.lifestyle-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.lifestyle-text p {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .lifestyle-card, .lifestyle-card.reverse {
        flex-direction: column;
    }
    .lifestyle-img, .lifestyle-text {
        width: 100%;
    }
    .lifestyle-img {
        height: 350px;
    }
}

/* Promotional Video Section */
.promo-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.promo-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 20%, transparent 80%, rgba(0,0,0,1) 100%);
    pointer-events: none;
}

/* Products Section */
.products-section {
    padding: 100px 5%;
}
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.tab-btn.active {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    font-weight: 600;
    box-shadow: none;
}

.section-heading {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    /* 2x2 grid by default for products page */
    .products-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    
    /* Horizontal slider for home page */
    .products-grid.home-products-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin: 0 -5%; /* Break out of section padding */
        padding: 0 5% 20px 5%;
    }
    .products-grid.home-products-slider .product-card {
        flex: 0 0 75%;
        scroll-snap-align: center;
        max-width: none;
        margin: 0;
    }
    /* Hide scrollbar for slider */
    .products-grid.home-products-slider::-webkit-scrollbar {
        display: none;
    }
}

.product-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 20px 0;
    text-align: left;
    transition: transform 0.4s ease;
    cursor: pointer;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-img-wrapper {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
    padding: 0;
    border-radius: 10px;
}
.card-img-wrapper img {
    width: 100%;
    aspect-ratio: 1080 / 1350;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}
.add-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}
.add-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.card-info {
    padding: 0;
}
.card-info h3 {
    margin-bottom: 10px;
}

.card-info .price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.card-info .old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 8px;
}

.price-wrap {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.card-buttons {
    padding: 0 25px 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
}

.btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-card:hover .btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

footer {
    text-align: center;
    padding: 50px;
    background: #050505;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }
    .nav-links {
        display: none; /* simple mobile nav hide for now */
    }
    .hero-title {
        font-size: 12vw;
    }
    .info-content h2 {
        font-size: 2.5rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 25px;
}

#waitlist-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-family: inherit;
    outline: none;
    text-align: center;
}

#waitlist-form input:focus {
    border-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
}

.message.success { color: #4ade80; }
.message.error { color: #f87171; }

/* Product Details Page */
.product-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    min-height: 80vh;
}

/* Left Column: Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.main-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.thumbnail-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}
.thumbnail-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}
.thumbnail {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s;
    flex-shrink: 0;
}
.thumbnail.active {
    border-color: var(--accent-color);
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right Column: Info */
.product-details {
    color: #fff;
}
.product-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
.product-title .highlight {
    color: var(--accent-color);
    display: block;
}
.product-description {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.product-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.1rem;
}
.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}
.discount-badge {
    background: #ff2a2a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Specs Grid */
.product-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    margin-bottom: 30px;
}
.spec-item {
    padding: 0 10px;
    border-right: 1px solid var(--glass-border);
}
.spec-item:last-child {
    border-right: none;
}
.spec-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.spec-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

/* Actions */
.quantity-selector {
    margin-bottom: 20px;
}
.quantity-selector label {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}
.qty-controls {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}
.qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.qty-btn:hover { background: rgba(255,255,255,0.1); }
.qty-input {
    width: 50px;
    height: 40px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.btn-outline {
    flex: 1;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px;
    text-transform: none;
    font-weight: 600;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.btn-solid {
    flex: 1;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    padding: 15px;
    text-transform: none;
    font-weight: 600;
}
.btn-solid:hover {
    opacity: 0.9;
}

.shipping-info {
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-badges {
    width: 100%;
    padding: 10px 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.payment-badges img {
    height: 25px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .product-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-title {
        font-size: 2.2rem;
    }
    .product-specs {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }
    .spec-item:nth-child(2) { border-right: none; }
    .action-buttons {
        flex-direction: column;
    }
}

/* Accordion Section */
.accordion-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.accordion-item {
    border-bottom: 1px solid var(--glass-border);
}
.accordion-item:first-child {
    border-top: 1px solid var(--glass-border);
}
.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s;
}
.accordion-header:hover {
    color: var(--accent-color);
}
.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #aaa;
    line-height: 1.8;
}
.accordion-content p {
    margin-bottom: 15px;
}
.accordion-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}
.accordion-item.active .accordion-content {
    padding-bottom: 30px;
    /* max-height handled in JS or set a large value like 2000px */
    max-height: 2000px;
}



/* About Us Page */
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(144, 238, 144, 0.1) 0%, transparent 70%);
}

.about-hero-content {
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #aaa;
    line-height: 1.8;
}

.about-section {
    padding: 100px 20px;
}

.about-section.dark-bg {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.8;
}
.story-content p {
    margin-bottom: 20px;
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.1);
    border-color: rgba(144, 238, 144, 0.3);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-card p {
    color: #999;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    line-height: 1;
}

.value-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.value-text p {
    color: #aaa;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-item {
        flex-direction: column;
        gap: 15px;
    }
}

/* Contact Us Page */
.contact-hero {
    position: relative;
    padding: 120px 20px 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(230, 0, 0, 0.15) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s, border-color 0.4s;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 0, 0,0.2), rgba(255,255,255,0.05));
    border: 1px solid rgba(230, 0, 0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.contact-details p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 0, 0,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 20px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
}

.form-group textarea {
    resize: none;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-title {
        font-size: 3rem;
    }
    .contact-form-wrapper {
        padding: 30px;
    }
}

/* 1. Spotlight Overlay */
.spotlight-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: transparent;
    transition: background 0.1s;
}
.carbon-section {
    cursor: crosshair;
}

/* 2. Infinite Marquee Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #000;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 0 30px rgba(230, 0, 0,0.3);
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}
.marquee-track span {
    font-size: 3rem;
    font-weight: 800;
    font-style: normal;
    color: #000000;
    -webkit-text-stroke: 0;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 10px;
}
.track-left {
    animation: marqueeLeft 20s linear infinite;
}
.track-right {
    animation: marqueeRight 20s linear infinite;
}
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* 3. Floating 3D Balls */
.floating-ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0.1));
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.5);
    z-index: 2;
}
.ball-1 {
    width: 80px; height: 80px;
    top: 20%; right: 15%;
}
.ball-2 {
    width: 120px; height: 120px;
    bottom: 15%; left: 10%;
    background: radial-gradient(circle at 30% 30%, var(--accent-color), rgba(230, 0, 0,0.1));
}

/* 4. Blueprint SVG */
.blueprint-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}
.blueprint-svg {
    height: 80vh;
    max-height: 800px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}
.precision-content {
    position: relative;
    z-index: 1;
}

/* Product Card Tilt Enhancement */
.product-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}
.product-card .card-img-wrapper {
    transform: translateZ(50px);
}
.product-card h3 {
    transform: translateZ(30px);
}
.product-card .price {
    transform: translateZ(20px);
}
.product-card .btn {
    transform: translateZ(40px);
}

/* ========================================================================= */
/* MOBILE RESPONSIVENESS & ADAPTATION */
/* ========================================================================= */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s;
}
.hamburger.active {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    /* Navigation Adaptation */
    nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(5,5,5,0.95);
        justify-content: flex-end; /* Push hamburger to right if logo is absolute */
    }
    
    .hamburger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        display: flex;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links li a {
        font-size: 2rem;
        margin-left: 0;
        display: block;
        width: 100%;
    }
    .nav-actions {
        display: none; /* Hide cart on mobile for cleaner look */
    }

    /* Hero Sequences */
    #hero-sequence {
        height: 100vh; /* Ensure canvas fits phone */
    }

    /* 3D Feature Sections */
    .feature-section {
        padding: 40px 5%;
        text-align: center;
        min-height: auto;
    }
    .carbon-section {
        text-align: center; /* Center everything on mobile */
    }
    .carbon-title {
        font-size: 2.5rem;
    }
    .carbon-desc {
        font-size: 1.1rem;
    }
    .honeycomb-section {
        text-align: center;
    }
    .honey-desc {
        font-size: 1.1rem;
    }
    
    /* Marquee */
    .marquee-container {
        margin-top: -80px; /* Reduce the huge gap left by banner images on mobile */
    }
    .marquee-track span {
        font-size: 1.8rem;
    }

    /* Precision / Blueprint */
    .scrub-text {
        font-size: 2.5rem;
    }
    .blueprint-svg {
        height: 60vh;
        width: 100%;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .products-section {
        padding: 60px 5%;
    }

    /* Single Product Details Page */
    .product-page-container {
        display: flex;
        flex-direction: column;
        padding: 20px 5% 50px 5%; /* Fix top spacing */
        gap: 30px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .product-gallery {
        width: 100%;
        max-width: 100%;
    }
    .main-image-container {
        height: 350px;
        padding: 20px;
    }
    .thumbnail-list {
        justify-content: center;
        max-width: 100%;
    }
    .product-title {
        font-size: 1.8rem; /* Make long titles fit on mobile */
        word-wrap: break-word;
    }
    .product-price {
        font-size: 2rem;
    }
    .accordion-section {
        margin: 20px auto;
        text-align: left; /* Keep accordion content readable */
    }
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        margin-bottom: 15px;
    }

    /* About Us */
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Us */
    .contact-title {
        font-size: 2.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* ========================================= */
/* TOURNAMENT PAGE STYLES                    */
/* ========================================= */

.tourney-hero {
    display: flex;
    padding: 220px 5% 100px; /* Forced large top padding to prevent header overlap */
    background: radial-gradient(circle at center, rgba(230, 0, 0, 0.1) 0%, var(--bg-color) 70%), url('assets/carbon-bg.jpg') center/cover;
    position: relative;
}

.tourney-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 80px;
    margin: 0 auto; /* Only center horizontally */
}

.tourney-text-wrap {
    flex: 1;
    max-width: 600px;
}

.tourney-prize {
    font-size: 1.5rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tourney-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #ddd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tourney-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 1px;
}

.tourney-form-container {
    width: 450px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
}

.tourney-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.tourney-form-container p {
    color: #999;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tourney-form-container input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.tourney-form-container input:focus {
    border-color: var(--accent-color);
}

.tourney-stats-section {
    padding: 80px 5%;
    background: #0a0a0a;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stat-card h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    letter-spacing: 1px;
}

.tourney-split-section {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.split-image, .split-content {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    background: rgba(255,255,255,0.05);
}

.image-wrapper img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.split-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.split-content p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.8;
}

.tourney-features {
    list-style: none;
    margin-bottom: 30px;
}

.tourney-features li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.tourney-pricing-section {
    padding: 100px 5%;
    background: #080808;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.pricing-header {
    background: var(--accent-color);
    color: #fff;
    padding: 20px;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-body {
    padding: 40px;
}

.pricing-body h5 {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.player-text {
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
}

.tourney-rewards-section {
    padding: 100px 5%;
    position: relative;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.reward-item {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 0, 0,0.3);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.reward-item:hover {
    transform: translateY(-5px);
}

.reward-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.reward-item p {
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tourney-hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .tourney-title {
        font-size: 3rem;
    }
    .tourney-form-container {
        width: 100%;
        padding: 30px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-card {
        padding: 25px 10px;
    }
    .stat-card h4 {
        font-size: 0.85rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    .stat-icon {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .tourney-split-section {
        flex-direction: column;
        text-align: center;
    }
    .tourney-features li {
        justify-content: center;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .rewards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* DYNAMIC TOURNAMENT ANIMATIONS             */
/* ========================================= */

.animate-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 3D Floating Orbs in Hero */
.floating-ball {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--accent-color));
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(230, 0, 0, 0.5), inset -10px -10px 20px rgba(0,0,0,0.5);
    animation: floatOrb 6s ease-in-out infinite;
    z-index: 0;
    opacity: 0.8;
}

.floating-ball-2 {
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #fff, #ffaa00);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.4), inset -5px -5px 15px rgba(0,0,0,0.5);
    animation: floatOrb 8s ease-in-out infinite reverse;
    z-index: 0;
    opacity: 0.6;
}

@keyframes floatOrb {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

.tourney-hero-content {
    z-index: 2; /* Keep content above orbs */
}

/* ========================================= */
/* CRAZY HOME PAGE UPGRADES                  */
/* ========================================= */

/* Hide default cursor on desktop (REMOVED FOR BETTER UX) */

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    mix-blend-mode: screen;
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(230, 0, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.custom-cursor-follower.hover-active {
    width: 80px;
    height: 80px;
    background: rgba(230, 0, 0, 0.1);
    border-color: var(--accent-color);
}

/* Scroll Reveal Text */
.scroll-reveal {
    opacity: 0;
    transform: translateY(100px) skewY(5deg);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}
.delay-200 { transition-delay: 0.2s; }

/* Holographic Glare for Products */
.product-card {
    position: relative;
    overflow: hidden; /* Contains the glare */
    transform-style: preserve-3d;
}
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(230, 0, 0,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 5;
    pointer-events: none;
}
.product-card:hover::after {
    left: 200%;
    transition: left 1s ease;
}

/* ========================================= */
/* CRAZY INTERACTIVE EFFECTS                 */
/* ========================================= */

/* Spotlight Cursor */
.spotlight-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 0, 0,0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s;
}
.spotlight-cursor.active {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, rgba(0,0,0,0) 70%);
}

/* Particles Container */
#tsparticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Scrolling Marquee */
.hero-marquee {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}
.hero-marquee span {
    font-size: 15rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    animation: marqueeScroll 30s linear infinite;
    padding-right: 50px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Cyberpunk Glitch Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
}
.glitch-text:hover::before {
    left: 2px;
    text-shadow: -2px 0 #e60000;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 1.5s infinite linear alternate-reverse;
    opacity: 1;
}
.glitch-text:hover::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 1.5s infinite linear alternate-reverse;
    opacity: 1;
}
@keyframes glitch-anim {
    0% { clip: rect(69px, 9999px, 86px, 0); }
    20% { clip: rect(2px, 9999px, 26px, 0); }
    40% { clip: rect(59px, 9999px, 36px, 0); }
    60% { clip: rect(96px, 9999px, 28px, 0); }
    80% { clip: rect(3px, 9999px, 78px, 0); }
    100% { clip: rect(42px, 9999px, 86px, 0); }
}
@keyframes glitch-anim2 {
    0% { clip: rect(42px, 9999px, 86px, 0); }
    20% { clip: rect(3px, 9999px, 78px, 0); }
    40% { clip: rect(96px, 9999px, 28px, 0); }
    60% { clip: rect(59px, 9999px, 36px, 0); }
    80% { clip: rect(2px, 9999px, 26px, 0); }
    100% { clip: rect(69px, 9999px, 86px, 0); }
}

/* Magnetic Button Wrapper */
.magnetic-btn {
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.btn-text {
    pointer-events: none;
    display: inline-block;
    transition: transform 0.1s ease;
}

/* ========================================= */
/* DYNAMIC PRODUCT SPECS UI                  */
/* ========================================= */

.specs-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.spec-mini-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: 15px;
}
.spec-mini-item:last-child {
    border-right: none;
    padding-right: 0;
}
.spec-mini-item .spec-label {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
}
.spec-mini-item .spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 600px) {
    .specs-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0;
        padding: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .spec-mini-item {
        padding: 20px 10px;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    .spec-mini-item:nth-child(1), .spec-mini-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .spec-mini-item:nth-child(2), .spec-mini-item:nth-child(4) {
        border-right: none;
    }
}

.engineered-bg-wrapper {
    background: url('assets/lifestyle-1.jpeg') no-repeat center center/cover;
    width: 100%;
    position: relative;
    padding: 80px 5%;
}
.engineered-accordion {
    margin-top: 30px;
}

/* Feature Icons Section */
.feature-icons-section {
    width: 100%;
    background: transparent;
    padding: 80px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.feature-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.feature-icon-item:hover .feature-icon-box {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(230, 0, 0, 0.3);
    border-color: var(--accent-color);
}
.feature-icon-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.feature-icon-item p {
    font-size: 0.95rem;
    color: #aaa;
}

@media (max-width: 768px) {
    .feature-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    .feature-icon-box {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .feature-icon-item h4 {
        font-size: 0.85rem;
        min-height: 2.6em; /* Ensure uniform height for 1 or 2 lines */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
    }
    .feature-icon-item p {
        font-size: 0.75rem;
    }
}

/* ========================================= */
/* PROMO SLIDER (ALL DEVICES)                */
/* ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden; /* Fix horizontal scroll bug during glitch animation */
}
.slider-container {
    display: grid;
    width: 100%;
}
.slide {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.slide.glitching {
    animation: cyberGlitch 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    z-index: 3;
    opacity: 1;
    pointer-events: auto;
}
.slide a {
    display: block;
    width: 100%;
}
.slide picture {
    display: block;
    width: 100%;
}
.slide img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-slider, .slider-container, .slide {
    /* Removed forced height so banners dictate height */
}
    .slide a, .slide picture {
    display: block;
}
    
}

@keyframes cyberGlitch {
    0% {
        clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
        transform: translate(25px, -15px) scale(1.05);
        filter: hue-rotate(90deg) contrast(200%) saturate(200%);
    }
    10% {
        clip-path: polygon(0 60%, 100% 60%, 100% 65%, 0 65%);
        transform: translate(-30px, 10px) scale(1.1);
        filter: hue-rotate(-180deg) invert(20%);
    }
    20% {
        clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
        transform: translate(-10px, 25px) scale(1.05);
        filter: hue-rotate(-90deg) contrast(150%);
    }
    30% {
        clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
        transform: translate(35px, -5px) scale(1.1);
    }
    40% {
        clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%);
        transform: translate(-20px, -25px) scale(1.02);
        filter: invert(30%) sepia(50%) hue-rotate(200deg);
    }
    50% {
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        transform: translate(15px, 20px) scale(1.08);
    }
    60% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(-15px, 15px);
        filter: hue-rotate(45deg) saturate(300%);
    }
    70% {
        clip-path: polygon(0 30%, 100% 30%, 100% 70%, 0 70%);
        transform: translate(25px, -15px) scale(1.05);
    }
    80% {
        clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
        transform: translate(-15px, 5px) scale(1.02);
    }
    90% {
        clip-path: polygon(0 85%, 100% 85%, 100% 95%, 0 95%);
        transform: translate(10px, -20px);
        filter: invert(10%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translate(0, 0) scale(1);
        filter: none;
    }
}

/* ========================================= */
/* 3D PARALLAX PARTICLES                     */
/* ========================================= */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    transition: transform 0.1s ease-out;
}
.p-neon {
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-glow);
}
.p-dark {
    background: #222;
    border: 1px solid #444;
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.8);
}
.p-close {
    filter: blur(8px);
    opacity: 0.8;
}
.p-mid {
    filter: blur(2px);
    opacity: 1;
}
.p-far {
    filter: blur(1px);
    opacity: 0.5;
}

.engineered-section {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}
.engineered-glass-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .engineered-glass-card {
        max-width: 100%;
        padding: 30px 20px;
    }
}

.engineered-title {
    font-size: clamp(1.8rem, 6vw, 3rem) !important;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}
.spec-list li:last-child {
    border-bottom: none;
}
.spec-list .spec-key {
    font-weight: 600;
    color: #fff;
}
.spec-list .spec-val {
    color: #bbb;
    text-align: right;
}

/* ========================================= */
/* MOBILE TOUCH INTERACTIONS                 */
/* ========================================= */
@media (max-width: 768px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
}

.tap-particle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: tapBurst 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes tapBurst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* ========================================= */
/* STICKY ADD TO CART                        */
/* ========================================= */
.sticky-atc {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}
.sticky-atc.visible {
    bottom: 0;
}
.sticky-atc-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}
.sticky-atc-content img {
    height: 50px;
    width: auto;
    border-radius: 5px;
}
.sticky-atc-info {
    flex-grow: 1;
    margin-left: 20px;
}
.sticky-atc-info h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
}
.sticky-atc-info .price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}
.sticky-atc-actions {
    display: flex;
    gap: 15px;
}
.sticky-atc-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .sticky-atc-content {
        padding: 0 15px;
    }
    .sticky-atc-content img, .sticky-atc-info {
        display: none;
    }
    .sticky-atc-actions {
        width: 100%;
        justify-content: space-between;
    }
    .sticky-atc-actions .btn {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 1rem;
    }
}

/* ========================================= */
/* CART DRAWER UI                            */
/* ========================================= */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #111;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.05);
}
.cart-drawer.active {
    right: 0;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
}
.cart-header button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-footer {
    padding: 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
}
.empty-cart {
    text-align: center;
    color: #777;
    margin-top: 50px;
}
.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    padding: 10px;
    border-radius: 8px;
    position: relative;
}
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #000;
    border-radius: 5px;
}
.cart-item-details {
    flex-grow: 1;
}
.cart-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    padding-right: 20px;
}
.cart-item-price {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 10px;
}
.cart-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    width: fit-content;
}
.cart-qty-controls button {
    background: transparent;
    border: none;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
}
.cart-qty-controls input {
    width: 30px;
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
}
.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    transition: color 0.3s;
}
.cart-item-remove:hover {
    color: var(--accent-color);
}

/* ========================================= */
/* DYNAMIC PAGES UPGRADE                     */
/* ========================================= */

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.1);
}

/* Enhancing Existing Elements */
.why-card, .value-item, .contact-card, .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

.why-card:hover, .value-item:hover, .contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: 0 15px 35px rgba(230, 0, 0, 0.15);
}

.contact-card .contact-icon-box {
    transition: transform 0.3s ease;
}
.contact-card:hover .contact-icon-box {
    transform: scale(1.2);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Interactive Curved Path Guide */
.path-guide-section {
    position: relative;
    background: #050505;
    padding: 100px 0;
    overflow: hidden;
}
.path-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 2000px;
}
.flight-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.5;
}
#flying-paddle {
    position: absolute;
    top: 0;
    left: 0; 
    width: 200px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(230,0,0,0.5));
    transform-origin: center center;
    opacity: 0; /* Initially hidden until ScrollTrigger kicks in */
}
.feature-stop {
    position: absolute;
    width: 250px;
    padding: 20px;
    background: rgba(20,20,20,0.8);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    z-index: 5;
    opacity: 0; 
    transform: translateY(30px);
}
.feature-stop h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.5rem;
}
.feature-stop p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .feature-stop {
        width: 200px;
        left: 5% !important;
        right: 5% !important;
        text-align: left !important;
    }
}





/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 84px; /* Sits right under the nav (nav is ~84px tall) */
    left: 0;
    width: 100%;
    background: #ffffff;
    color: #000000;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 800;
    z-index: 990;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.marquee-text {
    padding: 0 50px;
    display: flex;
    gap: 50px;
    align-items: center;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Enhanced Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 20px;
    background: rgba(5,5,5,0.95);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-red);
}
.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin: 0 15px;
}
.footer-social a:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}
footer p {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================= */
/* CUSTOMER REVIEWS MARQUEE                  */
/* ========================================= */
.reviews-section {
    padding: 60px 20px;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.reviews-marquee-container::before,
.reviews-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.reviews-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #080808 0%, transparent 100%);
}
.reviews-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #080808 0%, transparent 100%);
}
.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollReviews 30s linear infinite;
}
.reviews-track:hover {
    animation-play-state: paused;
}
.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}
.review-card .stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-style: italic;
}
.review-author {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: auto;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translate half the width since we duplicated the content */
        transform: translateX(calc(-50% - 15px)); 
    }
}
@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 20px;
    }
    .reviews-marquee-container::before,
    .reviews-marquee-container::after {
        width: 50px;
    }
}

/* ========================================= */
/* PADDLE DNA PROFILE SECTION                */
/* ========================================= */
#dna-profile-section {
    padding: 60px 20px;
    background: #000;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.dna-premium-card {
    width: 100%;
    max-width: 1100px;
    background: rgba(20, 20, 20, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #e0e0e0;
}

/* Optional: Add a subtle texture or noise overlay here if desired, but gradient is cleaner */

.dna-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dna-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.dna-type-badge {
    background: linear-gradient(180deg, #d4d4d4, #888);
    color: #000;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,255,255,0.8);
    border: 1px solid #222;
}

.dna-card-body {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

/* LEFT: Stats */
.dna-stats-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
}

.dna-stat-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dna-stat-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dna-stat-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 1px;
}

.dna-stat-score {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

.dna-stat-bar-container {
    width: 100%;
    height: 10px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.dna-stat-bar-fill {
    height: 100%;
    border-radius: 10px 0 0 10px;
    position: relative;
}

.dna-stat-bar-indicator {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 8px #fff;
    border-radius: 2px;
}

/* RIGHT: Visuals */
.dna-visuals-column {
    flex: 1.2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    gap: 20px;
}

/* Subtle glowing border effect for the right column */


.dna-radar-wrapper {
    flex: 1;
    height: 280px;
    position: relative;
}

.dna-product-image-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dna-product-image {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.8));
    transform: rotate(15deg); /* Match the angled look in the mockup */
}

/* BOTTOM: Footer */
.dna-card-footer {
    border-top: 1px solid #333;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.dna-badges-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dna-footer-badge {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.dna-footer-badge i {
    font-size: 1rem;
}

.dna-footer-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    text-align: right;
    max-width: 400px;
    margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .dna-card-body {
        flex-direction: column;
    }
    
    .dna-visuals-column {
    flex: 1.2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    gap: 20px;
}
    
    .dna-radar-wrapper {
        width: 100%;
        height: 250px;
    }
    
    .dna-product-image {
        transform: rotate(0deg);
        max-height: 200px;
        margin-top: 20px;
    }
    
    .dna-card-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .dna-badges-row {
        justify-content: center;
    }
    
    .dna-footer-text {
        text-align: center;
    }
}


/* ========================================= */
/* PRODUCT INNER STICKY NAV                  */
/* ========================================= */
.product-inner-nav {
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px 20px;
}

.inner-nav-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.inner-nav-link:hover, .inner-nav-link.active {
    color: #fff;
}

.inner-nav-link::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px #fff;
}

.inner-nav-link.active::after {
    width: 100%;
}


/* ========================================= */


/* ========================================= */
/* PADDLZ ENGINEERED SECTION                 */
/* ========================================= */
.engineered-section {
    padding: 80px 5%;
    background: #0d0d0d;
    text-align: center;
}
.engineered-header {
    margin-bottom: 40px;
}
.engineered-title {
    font-size: clamp(1.8rem, 6vw, 3rem) !important;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
}
.engineered-desc {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}
.dna-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(20,20,20,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}
.dna-sidebar {
    width: 250px;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    border-right: 1px solid rgba(255,255,255,0.05);
}
.dna-btn {
    padding: 20px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dna-btn:hover, .dna-btn.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-left: 4px solid var(--accent-color);
}
.dna-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}
.dna-panel {
    display: none;
}
.dna-panel.active {
    display: block;
    animation: fadeIn 0.5s;
}

/* POPUP CSS */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.popup-content {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
}
.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}
.popup-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
}
.floating-ig {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
}


/* ========================================= */
/* LIVE PADDLE PHYSICS SECTION               */
/* ========================================= */
.physics-section {
    padding: 100px 5%;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.physics-container {
    max-width: 1400px;
    margin: 0 auto;
}

.physics-header {
    text-align: center;
    margin-bottom: 60px;
}

.physics-title {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}

.physics-desc {
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}



.physics-sandbox {
    display: flex;
    gap: 40px;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Left Dashboard */
.physics-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.metric-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.metric-card.active-sweet {
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2), inset 0 0 15px rgba(0, 255, 136, 0.1);
}

.metric-card.active-edge {
    border-color: #ff3333;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.2), inset 0 0 15px rgba(255, 51, 51, 0.1);
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-variant-numeric: tabular-nums;
}

/* Right Arena */
.physics-arena {
    flex: 1.5;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 80%);
    border-radius: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    border: 1px solid rgba(255,255,255,0.02);
    overflow: hidden;
}

.paddle-target {
    pointer-events: none;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.physics-paddle-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8));
}

.sweet-spot-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,0.4) 0%, rgba(0,255,136,0) 70%);
    z-index: 1;
    opacity: 0.3;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sweet-spot-glow.hit {
    opacity: 0.8;
    box-shadow: 0 0 50px rgba(0,255,136,0.6);
}

.sweet-spot-glow.miss {
    background: radial-gradient(circle, rgba(255,51,51,0.4) 0%, rgba(255,51,51,0) 70%);
    opacity: 0.8;
    box-shadow: 0 0 50px rgba(255,51,51,0.6);
}

/* Draggable Ball */
.pickleball-draggable {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 60px;
    height: 60px;
    cursor: grab;
    z-index: 10;
}

.pickleball-draggable:active {
    cursor: grabbing;
}

.pickleball-inner {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ccff00 0%, #88aa00 80%);
    border-radius: 50%;
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,0.4);
    position: relative;
}

/* Pickleball holes texture */
.pickleball-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: radial-gradient(rgba(0,0,0,0.4) 15%, transparent 16%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    opacity: 0.6;
}

.drag-hint {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.6;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@media (max-width: 900px) {
    .physics-sandbox {
        flex-direction: column-reverse;
        padding: 20px;
    }
    .physics-arena {
        min-height: 400px;
    }
    .paddle-target {
        width: 180px;
        height: 300px;
    }
    .pickleball-draggable {
        width: 45px;
        height: 45px;
        right: 20px;
        top: 20px;
    }
}


@keyframes pointAndDrag {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-10px, 10px) scale(0.9); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(-10px, 10px) scale(1); }
    100% { transform: translate(0, 0) scale(1); }
}

@media (max-width: 900px) {
    /* Make physics section more compact vertically */
    .physics-section {
        padding: 50px 15px;
    }
    
    .physics-header {
        margin-bottom: 30px;
    }
    
    .physics-title {
        font-size: 2.2rem;
    }
    
    .physics-sandbox {
        padding: 20px;
        gap: 15px;
    }
    
    .physics-dashboard {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .metric-card {
        padding: 10px 15px;
    }
    
    .metric-label {
        font-size: 0.65rem;
        margin-bottom: 5px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .physics-arena {
        min-height: 250px; /* Reduced from 400px */
    }
    
    .paddle-target {
        width: 130px;
        height: 220px;
    }
    
    .pickleball-draggable {
        width: 35px;
        height: 35px;
        right: 15px;
        top: 15px;
    }
    
    .drag-hint-icon {
        font-size: 1.5rem !important;
        right: -20px !important;
        top: -20px !important;
    }
    
    .drag-hint {
        bottom: 10px;
        font-size: 0.75rem;
    }
}


@media (min-width: 901px) {
    .physics-dashboard {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        align-content: center;
    }
}


/* ========================================= */
/* HEADER BRAND CSS                          */
/* ========================================= */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo-img img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px; /* Desktop: side-by-side */
}

@media (max-width: 768px) {
    nav {
        justify-content: flex-end; /* Push hamburger to right */
    }
    
    .nav-brand {
        /* Reset for mobile absolute positioning */
    }
    
    .nav-logo-img {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-logo-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }
}


@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-marquee-auto:hover {
    animation-play-state: paused !important;
}


/* --- NEW REDESIGN STYLES --- */
/* Physics Desktop Row */
.physics-desktop-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
@media (min-width: 1024px) {
    .physics-desktop-row {
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: center;
        gap: 50px !important;
    }
    .physics-desktop-row .new-dashboard {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        width: 300px !important;
    }
    .physics-desktop-row .new-arena {
        flex: 1;
        max-width: 100% !important;
        height: 600px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .physics-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: 
            linear-gradient(to bottom, transparent, rgba(204,255,0,0.3) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(255,51,102,0.25) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(0,255,255,0.25) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(204,255,0,0.2) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(255,51,102,0.15) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(0,255,255,0.15) 50%, transparent),
            linear-gradient(to bottom, transparent, rgba(204,255,0,0.1) 50%, transparent);
        background-size: 2px 200px, 1px 150px, 1px 300px, 2px 100px, 1px 120px, 2px 250px, 1px 180px, 1px 220px, 2px 140px, 1px 280px;
        background-position: 15% 0, 75% 0, 30% 0, 90% 0, 50% 0, 8% 0, 85% 0, 40% 0, 65% 0, 95% 0;
        background-repeat: repeat-y;
        animation: windTunnel 1s linear infinite;
        pointer-events: none;
        z-index: 1;
        opacity: 0.8;
    }
    
    .physics-desktop-row .realistic-court::before {
        display: none !important;
    }
}

/* Realistic Court */
.realistic-court {
    background: #000000;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Realistic Pickleball 3D */
.realistic-pickleball {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #e6ff00 0%, #aacc00 70%, #556600 100%);
    box-shadow: 
        inset -10px -10px 20px rgba(0,0,0,0.5), /* Inner 3D shadow */
        inset 5px 5px 10px rgba(255,255,255,0.8), /* Inner highlight */
        0 15px 25px rgba(0,0,0,0.6); /* Drop shadow */
    position: relative;
}
/* Holes for Wiffle ball effect */
.realistic-pickleball::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: radial-gradient(#222 15%, transparent 16%);
    background-size: 15px 15px;
    background-position: 0 0, 7.5px 7.5px;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

/* Sticky Scroll Section Mobile Adjustments */
@media (max-width: 768px) {
    .scroll-point {
        display: none !important;
    }
    .scroll-point-mobile {
        display: block !important;
    }
    .traveling-paddle-wrapper {
        height: 50vh !important;
        top: 40% !important;
    }
}

@keyframes bounceUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes appGesture {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(180px) scale(0.9); opacity: 1; }
    80% { transform: translateY(180px) scale(0.9); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

@keyframes paddleShake {
    0% { transform: translateX(0) translateY(0) rotate(0); }
    20% { transform: translateX(-8px) translateY(5px) rotate(-3deg); }
    40% { transform: translateX(8px) translateY(-5px) rotate(3deg); }
    60% { transform: translateX(-8px) translateY(5px) rotate(-3deg); }
    80% { transform: translateX(8px) translateY(-5px) rotate(3deg); }
    100% { transform: translateX(0) translateY(0) rotate(0); }
}

.paddle-hit {
    animation: paddleShake 0.4s ease-in-out;
}

.realistic-court::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to bottom, transparent, rgba(204,255,0,0.3) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(255,51,102,0.25) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(255,255,255,0.2) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(0,255,255,0.25) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(204,255,0,0.2) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(255,51,102,0.15) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(0,255,255,0.15) 50%, transparent),
        linear-gradient(to bottom, transparent, rgba(204,255,0,0.1) 50%, transparent);
    background-size: 2px 200px, 1px 150px, 1px 300px, 2px 100px, 1px 120px, 2px 250px, 1px 180px, 1px 220px, 2px 140px, 1px 280px;
    background-position: 15% 0, 75% 0, 30% 0, 90% 0, 50% 0, 8% 0, 85% 0, 40% 0, 65% 0, 95% 0;
    background-repeat: repeat-y;
    animation: windTunnel 1s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

@keyframes windTunnel {
    0% { background-position: 15% 0px, 75% 0px, 30% 0px, 90% 0px, 50% 0px, 8% 0px, 85% 0px, 40% 0px, 65% 0px, 95% 0px; }
    100% { background-position: 15% 600px, 75% 600px, 30% 600px, 90% 600px, 50% 600px, 8% 600px, 85% 600px, 40% 600px, 65% 600px, 95% 600px; } /* 600 is LCM of 200, 150, 300, 100, 120 (and roughly fits the new ones) */
}

/* Timeline Horizontal Styles */
.timeline-horizontal {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    min-width: 1200px;
    position: relative;
}
.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.timeline-horizontal .timeline-item {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-top: 70px;
}
.timeline-horizontal .timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.5);
    z-index: 3;
    transition: all 0.3s ease;
}
.timeline-horizontal .timeline-item:hover .timeline-dot {
    background: var(--primary-red);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.8);
    transform: translateX(-50%) scale(1.1);
}
.timeline-horizontal .timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.timeline-horizontal .timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.timeline-horizontal .timeline-content h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.timeline-horizontal .timeline-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}
.timeline-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.timeline-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.1);
}
@media (max-width: 1200px) {
    .timeline-wrapper {
        padding-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .timeline-horizontal {
        min-width: unset;
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
        align-items: flex-start;
    }
    .timeline-horizontal::before {
        top: 0;
        bottom: 0;
        left: 30px;
        width: 4px;
        height: auto;
    }
    .timeline-horizontal .timeline-item {
        width: 100%;
        padding-top: 0;
        padding-left: 60px;
    }
    .timeline-horizontal .timeline-dot {
        top: 20px;
        left: 32px;
        transform: translate(-50%, 0);
    }
    .timeline-horizontal .timeline-item:hover .timeline-dot {
        transform: translate(-50%, 0) scale(1.1);
    }
    .timeline-horizontal .timeline-content {
        text-align: left;
    }
}
