/* ====== CSS Reset ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====== CSS Variables ====== */
:root {
    --primary-color: #a3a3a3;
    --secondary-color: #444;
    --accent-color: #292929;
    --background-dark: #121212;
    --background-card: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #5c5b5b;
    --text-muted: #666666;
    --border-color: #444;
    --shadow-primary: 0 10px 30px rgba(163, 163, 163, 0.1);
    --shadow-hover: 0 15px 40px rgba(163, 163, 163, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== Base Styles ====== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--background-dark) 0%, #0a0a0a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ====== Enhanced Header ====== */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

header:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(-50%) translateY(-2px);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

header nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(163, 163, 163, 0.1), transparent);
    transition: var(--transition);
}

header nav ul li a:hover::before {
    left: 100%;
}

header nav ul li a:hover {
    color: var(--text-primary);
    background: rgba(163, 163, 163, 0.1);
    transform: translateY(-1px);
}

/* ====== Enhanced Navigation Icons ====== */
header nav ul li a i {
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

header nav ul li a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

header nav ul li a span {
    font-size: 14px;
    font-weight: 500;
}

/* ====== Enhanced Hero Section ====== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(163, 163, 163, 0.05) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(163, 163, 163, 0.3);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ====== Hero Buttons Container ====== */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ====== Enhanced Buttons ====== */
.btn {
    display: inline-block;
    padding: 16px 24px;
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    width: 100%;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 163, 163, 0.2);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: rgba(163, 163, 163, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.btn2 {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    color: var(--background-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    margin-left: 15px;
    box-shadow: 0 10px 30px rgba(163, 163, 163, 0.2);
    border: none;
}

.btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(163, 163, 163, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
}

/* ====== Enhanced Sections ====== */
section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== Stats Section ====== */
.stats {
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.05) 0%, transparent 100%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ffffff, var(--primary-color));
    transform: translateX(-100%);
    transition: var(--transition);
}

.stat-box:hover::before {
    transform: translateX(0);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(163, 163, 163, 0.3);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(163, 163, 163, 0.3));
}

.stat-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.stat-box p {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(163, 163, 163, 0.3);
}

/* ====== Features Section ====== */
.features {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.5) 0%, var(--background-dark) 50%, rgba(30, 30, 30, 0.5) 100%);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.feature-box {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 600px;
    display: block;
    max-width: 380px;
    margin: 0 auto;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(163, 163, 163, 0.3);
}

.feature-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 30px;
    display: block;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.15) 0%, rgba(68, 68, 68, 0.2) 100%);
    padding: 15px;
    border: 1px solid rgba(163, 163, 163, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-box img::before {
    content: 'H';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(163, 163, 163, 0.5);
    z-index: 1;
}

.feature-box:hover img {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.25) 0%, rgba(68, 68, 68, 0.3) 100%);
    box-shadow: 0 6px 20px rgba(163, 163, 163, 0.3);
    border-color: rgba(163, 163, 163, 0.4);
}

/* ====== Feature Box Content Structure ====== */
.feature-content {
    display: block;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
}

.feature-box .fa-shield-alt,
.feature-box .fa-unlock-alt,
.feature-box .fa-user-secret {
    display: none; /* Hide duplicate icons since we have images */
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-box > p,
.feature-content > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
    flex-grow: 1;
    text-align: center;
    padding: 0 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.price-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 20px 15px;
    margin: auto 0 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
}

.price-section > p:first-of-type {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.price-section strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ====== Enhanced Grid Layout ====== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(68, 68, 68, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    min-height: 70px;
    position: relative;
}

.price-item.featured {
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.25) 0%, rgba(68, 68, 68, 0.5) 100%);
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(163, 163, 163, 0.2);
}

.price-item:hover {
    background: rgba(163, 163, 163, 0.2);
    border-color: rgba(163, 163, 163, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 163, 163, 0.15);
}

.price-item.featured:hover {
    transform: scale(1.02) translateY(-2px);
}

.price-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: none;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ====== Resellers Section ====== */
.resellers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reseller-card {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reseller-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(163, 163, 163, 0.3);
}

.reseller-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.15) 0%, rgba(68, 68, 68, 0.2) 100%);
    padding: 15px;
    border: 1px solid rgba(163, 163, 163, 0.2);
    transition: var(--transition);
}

.reseller-card img::before {
    content: 'H';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(163, 163, 163, 0.5);
    z-index: 1;
}

.reseller-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.reseller-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.payment-box {
    background: linear-gradient(135deg, rgba(68, 68, 68, 0.4) 0%, rgba(40, 40, 40, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.payment-box:hover {
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.2) 0%, rgba(68, 68, 68, 0.4) 100%);
    border-color: rgba(163, 163, 163, 0.3);
    transform: translateY(-1px);
}

.payment-box i {
    font-size: 14px;
    opacity: 0.8;
    color: var(--primary-color);
}

/* ====== Enhanced Footer ====== */
footer {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    margin: 60px auto 40px;
    max-width: 1200px;
    width: 90%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-main {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(163, 163, 163, 0.3));
}

.footer-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 12px;
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
    font-style: italic;
}

/* ====== Container Utility ====== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== Mobile Responsive Enhancements ====== */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn, .btn2 {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .price-item.featured {
        transform: none;
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    header nav ul li a span {
        display: none;
    }
    
    header nav ul li a {
        padding: 10px;
        width: 40px;
        height: 40px;
    }
    
    header {
        width: auto;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        gap: 15px;
    }
    
    .footer-text h3 {
        font-size: 20px;
    }
    
    .footer-text p {
        font-size: 12px;
    }
    
    header nav ul {
        gap: 3px;
    }
    
    header nav ul li a {
        padding: 8px;
        width: 36px;
        height: 36px;
    }
}

/* ====== Mobile Responsive Feature Cards ====== */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .feature-box {
        min-height: 550px;
        padding: 25px 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .feature-box img {
        width: 90px;
        height: 90px;
        padding: 15px;
    }
    
    .feature-box h3 {
        font-size: 20px;
        margin: 15px 0 15px;
    }
    
    .feature-box > p,
    .feature-content > p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .price-item.featured {
        transform: none;
        order: -1;
        background: linear-gradient(135deg, rgba(163, 163, 163, 0.3) 0%, rgba(68, 68, 68, 0.5) 100%);
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .feature-box {
        min-height: 500px;
        padding: 25px 20px;
    }
    
    .feature-box img {
        width: 90px;
        height: 90px;
        padding: 15px;
    }
    
    .feature-box h3 {
        font-size: 20px;
    }
    
    .feature-box > p {
        font-size: 14px;
    }
    
    .price-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .price-value {
        font-size: 20px;
    }
}

/* ====== Additional Styling Fixes ====== */
.features-container {
    padding: 0 20px;
}

.feature-box hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 20px 0 15px;
    opacity: 0.6;
}

/* ====== Icon Positioning ====== */
.btn i {
    margin-right: 8px;
    font-size: 14px;
}

/* ====== Enhanced Hover Effects ====== */
.feature-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(163, 163, 163, 0.15);
    border-color: rgba(163, 163, 163, 0.4);
}

.feature-box:hover .price-item {
    background: rgba(163, 163, 163, 0.1);
}

.feature-box:hover .price-item.featured {
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.3) 0%, rgba(68, 68, 68, 0.5) 100%);
    box-shadow: 0 8px 30px rgba(163, 163, 163, 0.3);
}

/* ====== Animations ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
    header {
        width: 90%;
        padding: 12px 20px;
    }
    
    header nav ul {
        gap: 5px;
    }
    
    header nav ul li a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero {
        padding: 0 20px;
        height: 90vh;
    }
    
    .btn2 {
        margin-left: 0;
        margin-top: 15px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .features-container,
    .stats-container,
    .resellers-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box,
    .stat-box,
    .reseller-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    footer {
        padding: 20px 30px;
        margin: 20px auto;
    }
}

/* ====== Utility Classes ====== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 20px rgba(163, 163, 163, 0.3);
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ====== Scroll Animations ====== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Exclude product images from scroll animations */
.scroll-reveal .product-image,
.scroll-reveal .product-image img {
    opacity: 1 !important;
    transform: none !important;
}

/* ====== Loading States ====== */
.loading {
    opacity: 0;
    transform: translateY(20px);
}

.loaded .loading {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== Accessibility Improvements ====== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-reveal {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ====== Focus States for Accessibility ====== */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ====== Print Styles ====== */
@media print {
    header,
    .hero-buttons,
    .btn,
    .btn2 {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .feature-box h3 {
        color: black;
    }
}

/* ====== Image Loading and Error Handling ====== */
.feature-box img,
.reseller-card img {
    background-image: linear-gradient(135deg, rgba(163, 163, 163, 0.15) 0%, rgba(68, 68, 68, 0.2) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-box img[src="assets/external.png"]::after,
.feature-box img[src="assets/bypass.png"]::after,
.feature-box img[src="assets/spoof.png"]::after,
.reseller-card img[src="assets/Hyper.png"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(163, 163, 163, 0.1);
    border-radius: inherit;
}

/* ====== Enhanced Button Animations ====== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* ====== Visit Store Button Styling ====== */
.resellers .btn {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    border-color: rgba(163, 163, 163, 0.2);
    margin-top: 10px;
}

.resellers .btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a3a3a 100%);
    box-shadow: 0 8px 25px rgba(163, 163, 163, 0.3);
}

/* ====== Fix Product Images - Disable Scroll Animation ====== */
.product-image img {
    opacity: 1 !important;
    transform: none !important;
    transition: var(--transition) !important;
}

.product-image {
    opacity: 1 !important;
    transform: none !important;
}

.feature-box .product-image {
    opacity: 1 !important;
    transform: none !important;
}

/* ====== Warzone Products Section ====== */
.warzone-products {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.warzone-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.warzone-card {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.warzone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.warzone-card:hover::before {
    opacity: 1;
}

.warzone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(163, 163, 163, 0.3);
}

.warzone-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0 15px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.warzone-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
    flex-grow: 1;
}

.warzone-pricing {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 20px 15px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.warzone-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(68, 68, 68, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
    transition: var(--transition);
}

.warzone-price-item:last-child {
    margin-bottom: 0;
}

.warzone-price-item.featured {
    background: linear-gradient(135deg, rgba(163, 163, 163, 0.25) 0%, rgba(68, 68, 68, 0.5) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(163, 163, 163, 0.2);
}

.warzone-price-item:hover {
    background: rgba(163, 163, 163, 0.2);
    border-color: rgba(163, 163, 163, 0.4);
    transform: translateY(-1px);
}

.warzone-price-item .price-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warzone-price-item .price-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

/* ====== Warzone Products - Disable Scroll Animation for Images ====== */
.warzone-card .product-image,
.warzone-card .product-image img {
    opacity: 1 !important;
    transform: none !important;
}

/* ====== Call of Duty Style Logo ====== */
.warzone-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 140px;
}

.cod-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8500 50%, #ffaa00 100%);
    border: 3px solid #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(255, 107, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cod-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
    opacity: 0;
}

.warzone-card:hover .cod-logo {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 107, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.warzone-card:hover .cod-logo::before {
    opacity: 1;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ====== Category Icons for FiveM Products ====== */
.category-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 140px;
}

.icon-external,
.icon-external-v2,
.icon-spoofer {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.icon-external {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2E7D32 100%);
}

.icon-external-v2 {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 50%, #0D47A1 100%);
}

.icon-spoofer {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 50%, #E65100 100%);
}

.icon-external::before,
.icon-external-v2::before,