:root {
    /* Fire Color Palette */
    --fire-red: #FF1744;
    --fire-orange: #FF6D00;
    --fire-yellow: #FFD600;
    --fire-white: #FFFFFF;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --gradient-fire: linear-gradient(135deg, #FF1744 0%, #FF6D00 50%, #FFD600 100%);
    --gradient-fire-alt: linear-gradient(45deg, #FFD600 0%, #FF6D00 50%, #FF1744 100%);
    --shadow-fire: 0 0 30px rgba(255, 23, 68, 0.5);
    --shadow-glow: 0 0 60px rgba(255, 109, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--fire-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Fire Background */
.fire-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1a0a0a 0%, #0a0a0a 100%);
    overflow: hidden;
}

.fire-particle {
    position: absolute;
    bottom: -50px;
    width: 300px;
    height: 300px;
    background: var(--gradient-fire);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float-up 20s infinite ease-in-out;
}

.fire-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.fire-particle:nth-child(2) {
    left: 25%;
    animation-delay: 3s;
}

.fire-particle:nth-child(3) {
    left: 40%;
    animation-delay: 6s;
}

.fire-particle:nth-child(4) {
    left: 55%;
    animation-delay: 9s;
}

.fire-particle:nth-child(5) {
    left: 70%;
    animation-delay: 12s;
}

.fire-particle:nth-child(6) {
    left: 85%;
    animation-delay: 15s;
}

.fire-particle:nth-child(7) {
    left: 15%;
    animation-delay: 2s;
}

.fire-particle:nth-child(8) {
    left: 60%;
    animation-delay: 8s;
}

@keyframes float-up {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0.3;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo i {
    font-size: 2rem;
    -webkit-text-fill-color: var(--fire-red);
    filter: drop-shadow(0 0 10px var(--fire-red));
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px var(--fire-red));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--fire-orange));
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--fire-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-fire);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--fire-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-fire);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
}

/* Home Section */
.home-section {
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slide-in-left 0.8s ease-out;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--fire-red);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: bounce-in 1s ease-out 0.3s both;
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slide-in-left 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    display: inline-block;
}

@keyframes gradient-shift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: slide-in-left 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slide-in-left 0.8s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 23, 68, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-fire);
}

.stat-item i {
    font-size: 2rem;
    color: var(--fire-red);
}

.stat-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slide-in-left 0.8s ease-out 0.8s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: var(--gradient-fire);
    color: var(--fire-white);
    box-shadow: var(--shadow-fire);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 50px rgba(255, 23, 68, 0.6);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--fire-white);
    border: 2px solid var(--fire-red);
}

.btn-secondary:hover {
    background: var(--fire-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-fire);
}

/* Hero Image */
.hero-image {
    animation: slide-in-right 0.8s ease-out;
    position: relative;
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 30px;
    padding: 2rem;
    background: rgba(255, 23, 68, 0.05);
    border: 2px solid rgba(255, 23, 68, 0.2);
    transition: all 0.5s ease;
}

.image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-glow);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-fire);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: rotate-glow 10s linear infinite;
    z-index: -1;
}

@keyframes rotate-glow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.tool-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-fire);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-fire);
    animation: float-icon 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-icon:nth-child(1) {
    top: 10%;
    left: -10%;
}

.float-icon:nth-child(2) {
    top: 30%;
    right: -10%;
}

.float-icon:nth-child(3) {
    bottom: 30%;
    left: -10%;
}

.float-icon:nth-child(4) {
    bottom: 10%;
    right: -10%;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--fire-red);
    animation: rotate-icon 2s linear infinite;
}

@keyframes rotate-icon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(255, 109, 0, 0.05) 100%);
    border: 2px solid rgba(255, 23, 68, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fade-in-up 0.6s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-fire);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.4);
    border-color: var(--fire-red);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-fire);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-fire);
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 23, 68, 0.6);
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 23, 68, 0.2);
    border: 1px solid var(--fire-red);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-badge i {
    color: var(--fire-yellow);
}

/* Pricing Section */
.pricing-section {
    margin-top: 5rem;
    animation: fade-in-up 0.8s ease-out;
}

.pricing-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-title i {
    color: var(--fire-yellow);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08) 0%, rgba(255, 109, 0, 0.08) 100%);
    border: 2px solid rgba(255, 23, 68, 0.3);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: scale-in 0.6s ease-out both;
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(255, 23, 68, 0.5);
    border-color: var(--fire-red);
}

.pricing-card.featured {
    border: 3px solid var(--fire-red);
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, rgba(255, 109, 0, 0.12) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-fire);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-fire);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
    animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--fire-orange);
}

.amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--fire-red);
    font-size: 1.2rem;
}

.pricing-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-fire);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: var(--shadow-fire);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 23, 68, 0.6);
}

.pricing-btn:active {
    transform: translateY(-1px);
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(255, 109, 0, 0.05) 100%);
    border: 2px solid rgba(255, 23, 68, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fade-in-up 0.6s ease-out both;
}

.video-card:nth-child(1) {
    animation-delay: 0.1s;
}

.video-card:nth-child(2) {
    animation-delay: 0.2s;
}

.video-card:nth-child(3) {
    animation-delay: 0.3s;
}

.video-card:nth-child(4) {
    animation-delay: 0.4s;
}

.video-card:nth-child(5) {
    animation-delay: 0.5s;
}

.video-card:nth-child(6) {
    animation-delay: 0.6s;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.4);
    border-color: var(--fire-red);
}

.video-iframe-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 20px 20px 0 0;
}

.video-iframe-container iframe,
.video-placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-placeholder-img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-fire);
    pointer-events: none; /* Let the container handle clicks */
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px var(--fire-red);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
    border-top: 2px solid rgba(255, 23, 68, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo i {
    -webkit-text-fill-color: var(--fire-red);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--fire-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--fire-red);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 23, 68, 0.1);
    border: 2px solid rgba(255, 23, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--fire-red);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-fire);
    color: white;
    transform: translateY(-5px) rotate(15deg);
    box-shadow: var(--shadow-fire);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 23, 68, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Resellers Section */
.resellers-section {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(255, 109, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.resellers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.resellers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Reseller Cards */
.reseller-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(107, 61, 61, 0.15) 0%, rgba(139, 90, 43, 0.12) 100%);
    border: 3px solid #8B5A2B;
    transition: all 0.4s ease;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    animation: card-float 3s ease-in-out infinite;
}

.reseller-card:nth-child(1) {
    animation-delay: 0s;
}

.reseller-card:nth-child(2) {
    animation-delay: 0.2s;
}

.reseller-card:nth-child(3) {
    animation-delay: 0.4s;
}

.reseller-card:nth-child(4) {
    animation-delay: 0.6s;
}

.reseller-card:nth-child(5) {
    animation-delay: 0.8s;
}

.reseller-card:nth-child(6) {
    animation-delay: 1s;
}

@keyframes card-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.reseller-card:hover {
    transform: translateY(-25px) scale(1.02);
    box-shadow: 0 20px 60px rgba(100, 50, 50, 0.5);
}

/* Animated Border */
.card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #6B3D3D, #8B5A2B, #7B6D2B, #8B5A2B, #6B3D3D);
    background-size: 300% 300%;
    animation: border-glow 8s ease infinite;
    z-index: -1;
}

@keyframes border-glow {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 12px rgba(107, 61, 61, 0.4), inset 0 0 12px rgba(139, 90, 43, 0.25);
    }

    25% {
        background-position: 50% 100%;
        box-shadow: 0 0 16px rgba(139, 90, 43, 0.5), inset 0 0 14px rgba(123, 109, 43, 0.3);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 18px rgba(123, 109, 43, 0.4), inset 0 0 16px rgba(107, 61, 61, 0.25);
    }

    75% {
        background-position: 50% 0%;
        box-shadow: 0 0 16px rgba(139, 90, 43, 0.5), inset 0 0 14px rgba(123, 109, 43, 0.3);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 12px rgba(107, 61, 61, 0.4), inset 0 0 12px rgba(139, 90, 43, 0.25);
    }
}

/* Gradient Background Animation */
.reseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(107, 61, 61, 0.05) 0%,
            rgba(139, 90, 43, 0.03) 50%,
            rgba(123, 109, 43, 0.04) 100%);
    animation: gradient-shift-card 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradient-shift-card {
    0% {
        background: linear-gradient(135deg,
                rgba(107, 61, 61, 0.05) 0%,
                rgba(139, 90, 43, 0.03) 50%,
                rgba(123, 109, 43, 0.04) 100%);
    }

    50% {
        background: linear-gradient(315deg,
                rgba(123, 109, 43, 0.06) 0%,
                rgba(139, 90, 43, 0.04) 50%,
                rgba(107, 61, 61, 0.04) 100%);
    }

    100% {
        background: linear-gradient(135deg,
                rgba(107, 61, 61, 0.05) 0%,
                rgba(139, 90, 43, 0.03) 50%,
                rgba(123, 109, 43, 0.04) 100%);
    }
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
}

/* Reseller Logo */
.reseller-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(107, 61, 61, 0.3), rgba(139, 90, 43, 0.3));
    border: 2px solid #6B3D3D;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(107, 61, 61, 0.25);
    animation: logo-glow 2s ease-in-out infinite;
}

@keyframes logo-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(107, 61, 61, 0.25), inset 0 0 6px rgba(107, 61, 61, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(139, 90, 43, 0.35), inset 0 0 8px rgba(139, 90, 43, 0.25);
    }
}

.reseller-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(107, 61, 61, 0.4));
}

/* Reseller Name */
.reseller-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, #9B7B5E, #B8956A, #A39E6E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {

    0%,
    100% {
        text-shadow: 0 0 6px rgba(107, 61, 61, 0.25);
        filter: drop-shadow(0 0 3px rgba(107, 61, 61, 0.15));
    }

    50% {
        text-shadow: 0 0 12px rgba(139, 90, 43, 0.3);
        filter: drop-shadow(0 0 6px rgba(139, 90, 43, 0.2));
    }
}

/* Reseller Description */
.reseller-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    flex-grow: 1;
}

/* Reseller Links */
.reseller-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.link-button,
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.link-button {
    color: #FFFFFF;
    background: linear-gradient(135deg, #6B3D3D, #8B5A2B);
    box-shadow: 0 0 10px rgba(107, 61, 61, 0.2);
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(107, 61, 61, 0.3), 0 0 15px rgba(139, 90, 43, 0.2);
    background: linear-gradient(135deg, #8B5A2B, #9B7B5E);
}

.whatsapp-button {
    color: #FFFFFF;
    background: linear-gradient(135deg, #1F5A3A, #2D7B4D);
    box-shadow: 0 0 10px rgba(47, 123, 77, 0.2);
    border: 2px solid #2D7B4D;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(47, 123, 77, 0.3), 0 0 15px rgba(47, 123, 77, 0.25);
    background: linear-gradient(135deg, #2D7B4D, #3A9B60);
    border-color: #3A9B60;
}

.link-button i,
.whatsapp-button i {
    font-size: 1.1rem;
    animation: icon-bounce 2s ease-in-out infinite;
}

.whatsapp-button i {
    animation: whatsapp-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

@keyframes whatsapp-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Fire Gradient Animated Background for Cards */
.reseller-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(107, 61, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 90, 43, 0.06) 0%, transparent 50%);
    animation: fire-glow 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    border-radius: 20px;
}

@keyframes fire-glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-grid,
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .resellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-bottom: 2px solid var(--fire-red);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .resellers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reseller-card {
        min-height: 380px;
    }

    .card-content {
        padding: 2rem;
    }

    .reseller-name {
        font-size: 1.3rem;
    }

    .reseller-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .reseller-card {
        min-height: 360px;
    }

    .card-content {
        padding: 1.5rem;
        gap: 1rem;
    }

    .reseller-logo {
        width: 70px;
        height: 70px;
    }

    .reseller-name {
        font-size: 1.1rem;
    }

    .reseller-description {
        font-size: 0.85rem;
    }

    .link-button,
    .whatsapp-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}