/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #cccccc;
    text-transform: uppercase;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
}

.cta-btn:hover {
    background-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-btn:active {
    transform: translateY(0);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid #ff6b35;
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #ff6b35;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Carousel Section */
.carousel-section {
    padding: 80px 0;
    background-color: #000000;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 107, 53, 0.8);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff6b35;
    transform: scale(1.3);
}

/* Section Title */
.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff6b35;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #0b0b0b;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
}

/* Instagram Reels Section */
.reels {
    padding: 100px 0;
    background-color: #000000;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.reel-embed {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.reel-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Social Links Section */
.social {
    padding: 100px 0;
    background-color: #0b0b0b;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-link svg {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.social-link:active {
    transform: translateY(0);
}

/* Gadgets & Gear Section */
.gear {
    padding: 100px 0;
    background-color: #000000;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gear-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.gear-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.gear-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #0b0b0b;
}

.gear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gear-card:hover .gear-image img {
    transform: scale(1.1);
}

.gear-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gear-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.gear-desc {
    color: #aaaaaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gear-coupon {
    background-color: #0b0b0b;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-label {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 600;
}

.coupon-code {
    font-size: 1rem;
    color: #ff6b35;
    font-weight: 700;
    letter-spacing: 1px;
}

.gear-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #ff6b35;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    margin-top: auto;
}

.gear-btn:hover {
    background-color: transparent;
    color: #ff6b35;
}

.gear-btn:active {
    transform: scale(0.98);
}

/* Support Section */
.support {
    padding: 100px 0;
    background-color: #0b0b0b;
    position: relative;
}

.support-text {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    cursor: pointer;
    font-size: 1rem;
}

.support-btn svg {
    width: 24px;
    height: 24px;
}

.support-btn:hover {
    background-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.support-btn:active {
    transform: translateY(0);
}

.upi-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upi-details.active {
    display: flex;
    opacity: 1;
}

.upi-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    border: 2px solid #ff6b35;
}

.upi-qr {
    margin-bottom: 30px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
}

.upi-id {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.upi-label {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 600;
}

.upi-value {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 700;
    letter-spacing: 1px;
}

.close-upi {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-upi:hover {
    transform: rotate(90deg);
    color: #ffffff;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #000000;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer p {
    color: #666666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-slide {
        height: 60vh;
    }

    .carousel-slide img {
        width: auto;
        max-width: 100%;
    }

    .reels-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }

    .support-buttons {
        flex-direction: column;
        width: 100%;
    }

    .support-btn {
        width: 100%;
        justify-content: center;
    }

    .upi-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        letter-spacing: 2px;
    }

    .section-title {
        letter-spacing: 2px;
    }

    .carousel-slide {
        height: 55vh;
    }

    .carousel-slide img {
        width: auto;
        max-width: 95%;
    }
}

/* Tap Effects for Mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-btn:active,
    .social-link:active,
    .gear-btn:active,
    .support-btn:active {
        opacity: 0.8;
    }
}