/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

:root {
    --blood-red-dark: #8B0000;
    --blood-red: #B30000;
    --blood-red-bright: #DC143C;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #e8e8e8;
    --text-secondary: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #000000 0%, #1a0000 50%, #000000 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.blood-flow-1,
.blood-flow-2,
.blood-flow-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.blood-flow-1 {
    background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.4), transparent);
    animation: flowDown 15s ease-in-out infinite;
}

.blood-flow-2 {
    background: linear-gradient(90deg, transparent, rgba(179, 0, 0, 0.3), transparent);
    animation: flowRight 20s ease-in-out infinite;
}

.blood-flow-3 {
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2), transparent);
    animation: flowPulse 25s ease-in-out infinite;
}

@keyframes flowDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
}

@keyframes flowRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

@keyframes flowPulse {
    0%, 100% {
        opacity: 0.03;
        transform: scale(1);
    }
    50% {
        opacity: 0.08;
        transform: scale(1.1);
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--blood-red) 0%, var(--blood-red-dark) 100%);
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--blood-red-bright) 0%, var(--blood-red) 100%);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(179, 0, 0, 0.15);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(179, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 40px rgba(179, 0, 0, 0.15);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    color: inherit;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    border-radius: 50%;
    font-weight: 900;
    color: #000;
    box-shadow: 0 0 25px rgba(179, 0, 0, 0.9),
                inset 0 0 10px rgba(220, 20, 60, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(179, 0, 0, 0.9),
                    inset 0 0 10px rgba(220, 20, 60, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 20, 60, 1),
                    inset 0 0 15px rgba(220, 20, 60, 0.5);
    }
}

.logo-text {
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.navbar-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login,
.btn-signup {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-login {
    background: transparent;
    color: var(--blood-red);
    border: 2px solid var(--blood-red);
}

.btn-login::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blood-red), transparent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-login:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-login:hover {
    color: var(--blood-red-bright);
    border-color: var(--blood-red-bright);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.btn-signup {
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(179, 0, 0, 0.6),
                inset 0 0 10px rgba(220, 20, 60, 0.2);
}

.btn-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(220, 20, 60, 0.8),
                inset 0 0 15px rgba(220, 20, 60, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.4) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float1 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(179, 0, 0, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float2 10s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -40px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    animation: slideUpFade 0.8s ease-out;
}

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

.hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red) 50%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0.3em;
    animation: wordGlow 0.6s ease-out backwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

.title-word.highlight {
    color: var(--blood-red-bright);
    text-shadow: 0 0 40px rgba(220, 20, 60, 0.8),
                 0 0 20px rgba(220, 20, 60, 0.5);
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.8px;
    animation: slideUpFade 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUpFade 0.8s ease-out 0.4s backwards;
}

.btn-primary,
.btn-secondary {
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    color: #000;
    box-shadow: 0 0 30px rgba(179, 0, 0, 0.7),
                inset 0 0 15px rgba(220, 20, 60, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 50px rgba(220, 20, 60, 1),
                inset 0 0 20px rgba(220, 20, 60, 0.5);
}

.btn-secondary {
    background: rgba(179, 0, 0, 0.15);
    color: var(--blood-red);
    border: 2px solid var(--blood-red);
    box-shadow: 0 0 20px rgba(179, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(179, 0, 0, 0.25);
    border-color: var(--blood-red-bright);
    color: var(--blood-red-bright);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.6);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: slideUpFade 0.8s ease-out;
}

.products-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(220, 20, 60, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   PRODUCT CARD
   ============================================ */

.product-card {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.9) 0%, rgba(20, 5, 5, 0.9) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                inset 0 0 20px rgba(179, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow: 0 20px 60px rgba(179, 0, 0, 0.5),
                0 0 40px rgba(220, 20, 60, 0.4),
                inset 0 0 20px rgba(179, 0, 0, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, rgba(10, 5, 5, 0.9) 0%, rgba(30, 10, 10, 0.9) 100%);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 3.5rem;
    animation: pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.4));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .shimmer-effect {
    opacity: 1;
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.stock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(179, 0, 0, 0.8),
                inset 0 0 10px rgba(220, 20, 60, 0.3);
    z-index: 2;
}

.product-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.product-card:hover .product-name {
    color: var(--blood-red-bright);
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: auto;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(179, 0, 0, 0.2);
}

.product-price {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.4);
}

.btn-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(179, 0, 0, 0.25) 0%, rgba(139, 0, 0, 0.15) 100%);
    border: 2px solid rgba(179, 0, 0, 0.5);
    color: var(--blood-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(179, 0, 0, 0.3);
}

.btn-arrow:hover {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.5) 0%, rgba(179, 0, 0, 0.3) 100%);
    border-color: var(--blood-red-bright);
    color: var(--blood-red-bright);
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
}

.btn-arrow svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.8) 0%, rgba(20, 5, 5, 0.8) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.25);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 0 15px 50px rgba(179, 0, 0, 0.4),
                0 0 30px rgba(220, 20, 60, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.2s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.4s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.6s; }

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--blood-red-bright);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1.5px solid rgba(179, 0, 0, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--blood-red);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--blood-red-bright);
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

[data-aos] {
    opacity: 0;
    transform: translateY(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .navbar-container {
        padding: 0.8rem 1rem;
    }

    .logo-text {
        display: none;
    }

    .navbar-buttons {
        gap: 0.5rem;
    }

    .btn-login,
    .btn-signup {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero {
        margin-top: 60px;
        padding: 1.5rem;
        min-height: calc(100vh - 60px);
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .title-word {
        display: inline;
        margin: 0 0.2em;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }

    .products {
        padding: 60px 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .products-title {
        font-size: 2rem;
    }

    .features {
        padding: 60px 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .product-info {
        padding: 1.2rem;
    }

    .btn-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar-buttons {
        gap: 0.3rem;
    }

    .btn-login,
    .btn-signup {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

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

    .btn-arrow {
        width: 40px;
        height: 40px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .footer-links {
        gap: 1rem;
    }
}

/* ============================================
   LOGO STYLES
   ============================================ */

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(179, 0, 0, 0.9);
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 40px rgba(220, 20, 60, 0.6));
    animation: heroLogoPulse 3s ease-in-out infinite;
}

@keyframes heroLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(220, 20, 60, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(220, 20, 60, 0.9));
        transform: scale(1.05);
    }
}

/* ============================================
   PRODUCT IMAGE STYLES
   ============================================ */

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

a.product-card {
    text-decoration: none;
    color: inherit;
}

.btn-view {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    color: #000;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(179, 0, 0, 0.5);
}

.product-card:hover .btn-view {
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.8);
    transform: translateY(-2px);
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.product-page {
    margin-top: 80px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.product-page-header h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.product-page-header .status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    color: #000;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(179, 0, 0, 0.8);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.price-card {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.9) 0%, rgba(20, 5, 5, 0.9) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow: 0 15px 50px rgba(179, 0, 0, 0.5),
                0 0 30px rgba(220, 20, 60, 0.3);
}

.price-card .duration {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card .btn-buy {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--blood-red-dark) 0%, var(--blood-red) 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(179, 0, 0, 0.5);
}

.price-card .btn-buy:hover {
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
    transform: translateY(-2px);
}

/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1.5px solid rgba(179, 0, 0, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    background: #0a0a0a;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid rgba(179, 0, 0, 0.5);
    color: var(--blood-red);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(179, 0, 0, 0.3);
}

.slider-btn:hover {
    background: rgba(179, 0, 0, 0.3);
    border-color: var(--blood-red-bright);
    color: var(--blood-red-bright);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.6);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.8);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(179, 0, 0, 0.3);
    border: 2px solid rgba(179, 0, 0, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--blood-red);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
}

/* Feature Sections on Product Pages */
.product-features {
    margin: 3rem 0;
}

.product-features .section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-features .section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-category {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.9) 0%, rgba(20, 5, 5, 0.9) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.25);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.feature-category:hover {
    transform: translateY(-8px);
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 0 15px 50px rgba(179, 0, 0, 0.4),
                0 0 25px rgba(220, 20, 60, 0.2);
}

.feature-category h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blood-red-bright);
    margin-bottom: 0.5rem;
}

.feature-category .cat-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

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

.feature-category ul li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(179, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category ul li:last-child {
    border-bottom: none;
}

.feature-category ul li::before {
    content: '✦';
    color: var(--blood-red);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Detailed Feature Blocks */
.detail-block {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.8) 0%, rgba(20, 5, 5, 0.8) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.2);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.detail-block h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blood-red-bright);
    margin-bottom: 0.8rem;
}

.detail-block .block-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 700px;
}

.detail-block .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    list-style: none;
    padding: 0;
}

.detail-block .feature-list li {
    padding: 0.7rem 1rem;
    background: rgba(179, 0, 0, 0.1);
    border: 1px solid rgba(179, 0, 0, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-block .feature-list li:hover {
    background: rgba(179, 0, 0, 0.2);
    border-color: rgba(220, 20, 60, 0.5);
    transform: translateX(5px);
}

.detail-block .feature-list li::before {
    content: '▸';
    color: var(--blood-red);
    font-weight: 900;
}

/* Ultimate Tool Hero */
.ultimate-section {
    text-align: center;
    padding: 4rem 2rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.6) 0%, rgba(20, 5, 5, 0.6) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.ultimate-section h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--blood-red-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.ultimate-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Steam Proof Badge */
.steam-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(179, 0, 0, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 2px solid rgba(179, 0, 0, 0.5);
    border-radius: 25px;
    color: var(--blood-red-bright);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 2rem auto;
    box-shadow: 0 0 25px rgba(179, 0, 0, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(179, 0, 0, 0.15);
    color: var(--blood-red);
    border: 2px solid rgba(179, 0, 0, 0.4);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.back-btn:hover {
    background: rgba(179, 0, 0, 0.25);
    border-color: var(--blood-red-bright);
    color: var(--blood-red-bright);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

/* Discord Page Specific */
.service-info {
    background: linear-gradient(135deg, rgba(30, 10, 10, 0.9) 0%, rgba(20, 5, 5, 0.9) 100%);
    border: 1.5px solid rgba(179, 0, 0, 0.25);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blood-red-bright);
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info ul li {
    padding: 0.6rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
}

.service-info ul li::before {
    content: '✦';
    color: var(--blood-red);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Product Page Responsive */
@media (max-width: 768px) {
    .product-page {
        margin-top: 60px;
        padding: 1rem;
    }

    .slider-slide img {
        height: 300px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-categories {
        grid-template-columns: 1fr;
    }

    .detail-block {
        padding: 2rem 1.5rem;
    }

    .detail-block .feature-list {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .slider-slide img {
        height: 220px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

button:focus {
    outline: 2px solid var(--blood-red);
    outline-offset: 2px;
}