/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="%23666" stroke-width="0.5" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
    pointer-events: none;
}

/* Lighter Black and Red Color Scheme */
:root {
    --primary-green: #10B981; /* Main CTA Green */
    --secondary-green: #6EE7B7; /* Lighter Green */
    --primary-blue: #dc2626;
    --secondary-blue: #ef4444;
    --text-white: #ffffff;
    --text-light: #cccccc;
    --bg-black: #121212; /* Lighter background */
    --bg-card: #0D0D0D; /* Darker cards */
    --bg-card-hover: #252525;
    --border-color: #383838; /* Adjusted border color */
    --shadow-light: rgba(220, 38, 38, 0.1);
    --shadow-medium: rgba(220, 38, 38, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.8);
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-top: -6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    text-align: left;
}

.title-line {
    display: block;
    color: var(--text-white);
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
    align-items: center;
}

.hero-text {
    text-align: left;
    margin-left: -8rem;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    right: -380px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: translateX(220px) scale(1.3);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #FFD700;
    font-size: 0.8rem;
}

.hero-rating span {
    color: var(--text-light);
    font-size: 0.8rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
}

.btn-secondary:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
    margin-left: -1rem;
}

.hero-stats .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual - Product Showcase */
.hero-visual {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards 1.3s;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-card {
    background: var(--bg-card);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card.featured {
    grid-column: 1 / -1;
    background: var(--gradient-primary);
    border-color: rgba(220, 38, 38, 0.3);
    transform: scale(1.05);
}

.product-card:nth-child(1) {
    animation-delay: 0s;
}

.product-card:nth-child(2) {
    animation-delay: 2s;
}

.product-card:nth-child(3) {
    animation-delay: 4s;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px var(--shadow-dark);
    border-color: rgba(220, 38, 38, 0.4);
}

.product-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    color: var(--text-white);
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 1rem;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--secondary-blue);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--secondary-blue);
    border-bottom: 2px solid var(--secondary-blue);
    transform: rotate(45deg);
}

/* Page Header for subpages */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    background: var(--bg-black);
}

.page-header .section-header {
    margin-bottom: 0;
    opacity: 1;
    transform: none;
    animation: none;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
}

.products::before {
    content: none;
}

.products::after {
    content: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-item {
    background: var(--bg-black);
    padding: 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    border: 1px solid rgba(220, 38, 38, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-item:hover::before {
    transform: scaleX(1);
}

.product-item.featured {
    background: var(--bg-black);
    border: 1px solid rgba(220, 38, 38, 0.05);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
}

.product-item.featured::before {
    transform: scaleX(1);
}

.product-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: rgba(220, 38, 38, 0.15);
    background: var(--bg-card);
}

.product-item h3 {
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.product-features li {
    color: var(--text-light);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    padding: 0.2rem 0;
}

.product-features li i {
    color: var(--secondary-blue);
    font-size: 0.8rem;
    background: rgba(220, 38, 38, 0.08);
    padding: 0.2rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.8rem;
    background: rgba(220, 38, 38, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.05);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
}

.price-period {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
}

.product-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-btn:hover::before {
    left: 100%;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: sectionGlow 15s ease-in-out infinite reverse;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--bg-black);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    border: 1px solid rgba(220, 38, 38, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: rgba(220, 38, 38, 0.15);
    background: var(--bg-card);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.feature-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--secondary-blue);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-white);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: sectionGlow 18s ease-in-out infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    border-color: rgba(220, 38, 38, 0.3);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px var(--shadow-dark);
    border-color: rgba(220, 38, 38, 0.4);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.pricing-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-header .currency {
    color: var(--text-light);
    font-size: 1.3rem;
}

.pricing-header .amount {
    color: var(--secondary-blue);
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-header .period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    color: var(--text-light);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--secondary-blue);
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: sectionGlow 20s ease-in-out infinite reverse;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-black) !important;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px var(--shadow-dark);
    border-color: rgba(220, 38, 38, 0.15);
    background: var(--bg-card);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-details h4 {
    color: var(--text-white);
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-details p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: var(--secondary-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--bg-black);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-black);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px var(--shadow-light);
    background: var(--bg-black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-black);
    color: var(--text-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--bg-black);
    color: white;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    animation: footerGlow 25s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-blue);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-blue);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

/* Background Animations */
@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes gridMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-10px) translateY(-10px);
    }
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes footerGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(220, 38, 38, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .product-card {
        padding: 1rem;
    }

    .product-item {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

.contact-card {
    background: var(--bg-black) !important;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-dark);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: rgba(220, 38, 38, 0.15);
    background: var(--bg-card);
}

/* Products Page Specific Styles */
.products-showcase {
    padding: 80px 0;
    background: var(--bg-black);
    position: relative;
}

.products-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: sectionGlow 18s ease-in-out infinite;
}

.products-showcase .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    align-items: stretch;
    justify-content: center;
}

.products-showcase .product-card {
    background: var(--bg-black);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-width: 480px;
}

.product-top-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.product-title-group h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.product-rating .fa-star {
    color: #f6e05e; /* A gold/yellow color for stars */
}

.products-showcase .product-card > p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.products-showcase .product-card h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.features-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
}

.features-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-columns ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.features-columns ul li::before {
    content: '•';
    color: var(--primary-blue);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.buy-now-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.buy-now-btn:hover {
    background: var(--secondary-blue);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.buy-now-btn i {
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    .products-showcase .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-showcase .products-grid {
        grid-template-columns: 1fr;
    }
}

.products-showcase .product-card:hover {
    /* No transform or box-shadow changes on hover */
    border-color: rgba(220, 38, 38, 0.2);
    background: var(--bg-card);
}

.product-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 80px 0;
    background: var(--bg-black);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.order-summary, .payment-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.product-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.features-recap {
    list-style: none;
    margin-bottom: 2rem;
}

.features-recap li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.features-recap i {
    color: var(--primary-blue);
}

.plan-selection h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.plan-option {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option.active, .plan-option:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary-blue);
}

.plan-option input {
    margin-right: 1rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-price h4 {
    font-size: 1.2rem;
}

#price-display {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-blue);
}

.payment-form .form-group {
    margin-bottom: 1.5rem;
}

.payment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.payment-form input {
    padding-left: 3rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.new-checkout {
    padding: 120px 0 80px;
    background: var(--bg-black);
    position: relative;
    min-height: 100vh;
}

.new-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: sectionGlow 18s ease-in-out infinite;
    z-index: 1;
}

.new-checkout .container {
    position: relative;
    z-index: 2;
}

@keyframes checkoutGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(1.1);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.95);
    }
    75% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.product-details, .purchase-sidebar {
    background: transparent;
    padding: 0;
    border: none;
}

.product-image-gallery img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-main-info h2 {
    font-size: 2.5rem; font-weight: 700; margin-bottom: 0rem; margin-top: -1rem;
}

.product-main-info .product-rating {
    display: flex; align-items: center; gap: 0.5rem; color: #F59E0B; margin-bottom: 0rem; margin-top: 0.15rem;
}

.product-main-info .product-rating span { color: var(--text-light); }

.product-main-info p { font-size: 1rem; color: var(--text-light); line-height: 1.6; margin-top: 1rem; }

.specifications {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; margin-top: 1.4rem;
}

.spec-item {
    background: #121212; border: 1px solid var(--border-color); border-radius: 8px; padding: 1rem;
    display: flex; flex-direction: column; gap: 0.25rem;
}

.spec-item span { font-size: 0.875rem; color: var(--text-light); }

.spec-item strong { font-size: 1rem; font-weight: 600; }

.status-undetected { color: var(--primary-blue); }

.product-description-tabs .tab-nav {
    display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 1.5rem;
}

.tab-link {
    background: none; border: none; color: var(--text-light); padding: 0.75rem 0; margin-right: 1.5rem; cursor: pointer;
    font-size: 1rem; position: relative;
}

.tab-link.active { color: var(--text-white); font-weight: 600; }

.tab-link.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background: var(--primary-blue);
}

.tab-content { display: none; }

.tab-content.active { display: block; animation: fadeInUp 0.5s ease; }

.key-features-list { list-style: none; margin: 1rem 0 2rem; }

.key-features-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; color: var(--text-light); }

.key-features-list li i { color: var(--primary-blue); }

.support-features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem;
}

.support-item {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 1.5rem; text-align: center;
}

.support-item i { font-size: 1.5rem; color: var(--primary-blue); margin-bottom: 1rem; }

.support-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }

.support-item p { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; }

.purchase-sidebar .purchase-box, .secure-payment-methods, .status-information {
    background: #121212; border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem;
}

.purchase-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }

.purchase-header h4 { font-size: 1.125rem; font-weight: 600; }

.purchase-header i { color: var(--text-light); cursor: pointer; }

.plan-options .plan-option {
    display: flex; justify-content: space-between; align-items: center; padding: 1rem; border: 1px solid var(--border-color);
    border-radius: 8px; margin-bottom: 0.75rem; cursor: pointer;
}

.plan-options .plan-option.active { border-color: var(--primary-blue); background: rgba(220, 38, 38, 0.1); }

.plan-option label { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }

.plan-option input { accent-color: var(--primary-blue); }

.price-with-badge { display: flex; align-items: center; gap: 0.5rem; }

.price-with-badge .badge { background: #F59E0B; color: var(--bg-black); font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 4px; }

.price-details { margin: 1.5rem 0; }

.detail-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.875rem; color: var(--text-light); }

.detail-row strong { color: var(--text-white); font-weight: 600; }

.detail-row.total { font-size: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border-color); }

.detail-row.total strong { font-size: 1.25rem; }

.quantity-selector { display: flex; align-items: center; gap: 0.5rem; }

.quantity-selector button { background: var(--border-color); color: var(--text-white); border: none; width: 24px; height: 24px; border-radius: 4px; cursor: pointer; }

.quantity-selector input { width: 30px; text-align: center; background: none; border: none; color: var(--text-white); }

.btn-buy-now {
    width: 100%; background: var(--primary-blue); color: var(--text-white); border: none; padding: 1rem; border-radius: 8px;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.3s ease;
}

.btn-buy-now:hover { background: var(--secondary-blue); }

.secure-payment-methods h5, .status-information h5 {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 1rem; font-weight: 600;
}

.payment-icons { display: flex; gap: 0.75rem; font-size: 1.75rem; color: var(--text-light); margin-bottom: 1rem; }

.secure-payment-methods p, .status-information a { font-size: 0.875rem; color: var(--text-light); text-align: center; }

.status-information ul { list-style: none; margin-bottom: 1rem; }

.status-information li { display: flex; justify-content: space-between; margin-bottom: 0.5rem; color: var(--text-light); }

.status-information a { display: block; text-decoration: none; }

.status-information a:hover { color: var(--primary-blue); }

/* HWID Banner */
.hwid-banner {
    background: #0F172A;
    color: var(--text-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--primary-blue);
    display: block;
    margin-top: 70px;
    position: relative;
    z-index: 999;
}
.hwid-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.banner-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hwid-banner i { font-size: 1.5rem; color: var(--secondary-blue); }
.hwid-banner p { margin: 0; font-size: 0.9rem; }
.hwid-banner .btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; border-radius: 8px; }
.close-banner-btn { background: none; border: none; color: var(--text-light); font-size: 1.5rem; cursor: pointer; }

/* Modal Styles */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px);
    display: none; align-items: center; justify-content: center; z-index: 2000;
    padding-left: 0;
}
.modal-overlay.visible { display: flex; animation: fadeIn 0.3s ease; }
.modal {
    background: var(--bg-card); border-radius: 16px; width: 90%; max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transform: scale(0.95); opacity: 0; animation: modal-pop-in 0.3s ease forwards;
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem; border-bottom: 1px solid var(--border-color);
}
.modal-header h3 { font-size: 1.25rem; font-weight: 600; }
.modal-close-btn { background: none; border: none; font-size: 1.8rem; color: var(--text-light); cursor: pointer; }
.modal-body { padding: 1.5rem; }
.modal-body > p { text-align: center; margin-bottom: 1.5rem; color: var(--text-light); font-size: 0.9rem; }
.spoofer-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.spoofer-card {
    background: #0D0D0D; border: 1px solid var(--border-color); border-radius: 12px;
    padding: 1.5rem; text-align: center; cursor: pointer; transition: all 0.3s ease;
}
.spoofer-card.active { border-color: var(--primary-blue); box-shadow: 0 0 15px rgba(220, 38, 38, 0.2); }
.spoofer-icon {
    width: 60px; height: 60px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.8rem;
}
.spoofer-icon.temp { background: rgba(220, 38, 38, 0.1); color: var(--primary-blue); }
.spoofer-icon.perm { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.spoofer-card.active .spoofer-icon.perm { background: rgba(220, 38, 38, 0.1); color: var(--primary-blue); }
.spoofer-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.spoofer-card p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.85rem; }
.price-from {
    background: var(--bg-black); padding: 0.5rem 1rem; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem;
}
.modal-footer-note { font-size: 0.8rem; color: var(--text-light); text-align: center; }

@keyframes modal-pop-in {
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .products-showcase .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-showcase .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero particles removed */

/* Banned Popup Styles */
.banned-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.banned-popup.visible {
    opacity: 1;
    visibility: visible;
}

.banned-popup-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.banned-popup.visible .banned-popup-content {
    transform: scale(1);
}

.banned-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.banned-popup-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.banned-popup-header h3 i {
    color: #F59E0B;
}

.banned-popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.banned-popup-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.banned-popup-body {
    padding: 1.5rem;
}

.banned-popup-body > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.banned-status-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.banned-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.banned-option:hover {
    border-color: var(--primary-blue);
    background: rgba(220, 38, 38, 0.05);
}

.banned-option input[type="radio"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banned-option input[type="radio"]:checked + .checkmark {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.banned-option input[type="radio"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.banned-option input[type="radio"]:checked ~ .option-content strong {
    color: var(--primary-blue);
}

.option-content {
    flex: 1;
}

.option-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.option-content small {
    color: var(--text-light);
    font-size: 0.875rem;
}

.banned-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.banned-popup-actions .btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banned-popup-actions .btn-secondary:hover {
    border-color: var(--text-white);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.banned-popup-actions .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banned-popup-actions .btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Mobile Responsive for Banned Popup */
@media (max-width: 768px) {
    .banned-popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .banned-popup-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .banned-popup-body {
        padding: 1rem;
    }
    
    .banned-popup-actions {
        flex-direction: column;
    }
    
    .banned-popup-actions .btn-secondary,
    .banned-popup-actions .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Coming Soon Popup Styles */
.coming-soon-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coming-soon-popup.visible {
    opacity: 1;
    visibility: visible;
}

.coming-soon-popup-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.coming-soon-popup.visible .coming-soon-popup-content {
    transform: scale(1);
}

.coming-soon-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.coming-soon-popup-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coming-soon-popup-header h3 i {
    color: #F59E0B;
}

.coming-soon-popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.coming-soon-popup-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.coming-soon-popup-body {
    padding: 1.5rem;
    text-align: center;
}

.coming-soon-popup-body > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.coming-soon-popup-body > p:last-of-type {
    margin-bottom: 2rem;
}

.coming-soon-popup-actions {
    display: flex;
    justify-content: center;
}

.coming-soon-popup-actions .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coming-soon-popup-actions .btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Mobile Responsive for Coming Soon Popup */
@media (max-width: 768px) {
    .coming-soon-popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .coming-soon-popup-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .coming-soon-popup-body {
        padding: 1rem;
    }
    
    .coming-soon-popup-actions .btn-primary {
        width: 100%;
        text-align: center;
    }
}

.product-image {
    margin: 1rem -0.5rem;
    text-align: center;
    width: calc(100% + 1rem);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.products-showcase .product-card:hover .product-img {
    border-color: rgba(220, 38, 38, 0.3);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

/* iFrame Modal Styles */
.iframe-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.iframe-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.iframe-modal {
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 98%;
    max-width: 1500px;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.iframe-modal-overlay.visible .iframe-modal {
    transform: scale(1);
}

.iframe-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.iframe-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.iframe-modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    line-height: 1;
}

.iframe-modal-close:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
}

.iframe-modal-body {
    padding: 0;
    height: 700px;
    overflow: hidden;
}

.iframe-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Mobile Responsive for iFrame Modal */
@media (max-width: 768px) {
    .iframe-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .iframe-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .iframe-modal-header h3 {
        font-size: 1.125rem;
    }
    
    .iframe-modal-body {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .iframe-modal {
        width: 98%;
        max-height: 98vh;
    }
    
    .iframe-modal-header {
        padding: 0.75rem 1rem;
    }
    
    .iframe-modal-body {
        height: 400px;
    }
}

/* Status Page Styles */
.status-header {
    padding: 120px 0 60px;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.status-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    animation: statusGlow 10s ease-in-out infinite;
    z-index: 1;
}

.status-overview {
    position: relative;
    z-index: 2;
    text-align: center;
}

.status-overview h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overall-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.status-indicator.operational {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-indicator i {
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Detection Rates Section */
.detection-rates {
    padding: 60px 0;
    background: var(--bg-black);
}

.detection-rates h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rate-card:hover::before {
    opacity: 1;
}

.rate-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15);
}

.rate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rate-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.rate-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.rate-badge.low {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.rate-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rate-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #6EE7B7 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

.rate-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.rate-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rate-stats i {
    color: var(--primary-blue);
}

/* System Status Section */
.system-status {
    padding: 60px 0;
    background: var(--bg-black);
}

.system-status h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.component-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.component-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.component-card:hover::before {
    opacity: 1;
}

.component-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.component-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.component-header i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
}

.component-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.operational {
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.component-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.uptime {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Incidents Section */
.incidents {
    padding: 60px 0;
    background: var(--bg-black);
}

.incidents h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.incidents-list {
    max-width: 800px;
    margin: 0 auto;
}

.incident-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.incident-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
}

.incident-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.incident-status i {
    font-size: 1.5rem;
    color: #10B981;
}

.incident-status span {
    font-size: 0.8rem;
    color: #10B981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.incident-details {
    flex: 1;
}

.incident-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.incident-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.incident-time {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--secondary-blue);
}

.nav-link.active::after {
    width: 100%;
}

/* Animations */
@keyframes statusGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-overview h1 {
        font-size: 2.5rem;
    }
    
    .overall-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .components-grid {
        grid-template-columns: 1fr;
    }
    
    .incident-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .incident-status {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .status-overview h1 {
        font-size: 2rem;
    }
    
    .detection-rates h2,
    .system-status h2,
    .incidents h2 {
        font-size: 2rem;
    }
    
    .rate-card,
    .component-card {
        padding: 1.5rem;
    }
    
    .incident-item {
        padding: 1.5rem;
    }
}

/* Status Page Styles - Dashboard Design */
.status-dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--bg-black);
    margin-top: 70px;
}

/* Sidebar */
.status-sidebar {
    width: 320px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 2rem;
    position: fixed;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.overall-health {
    margin-bottom: 2rem;
}

.health-indicator {
    display: flex;
    justify-content: center;
}

.health-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.health-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.health-progress path:first-child {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.health-progress path:last-child {
    fill: none;
    stroke: #10B981;
    stroke-width: 3;
    stroke-dasharray: 100;
    stroke-dashoffset: 0.1;
    stroke-linecap: round;
    animation: healthProgress 2s ease-out;
}

.health-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.health-percentage {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
}

.health-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats */
.quick-stats {
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.last-update {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Main Content */
.status-main {
    flex: 1;
    margin-left: 320px;
    padding: 2rem;
}

.status-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-main-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.refresh-btn.rotating i {
    animation: rotate 1s linear;
}

/* Detection Grid */
.detection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.detection-card {
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.detection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #6EE7B7 100%);
}

.detection-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15);
}

.card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.product-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #10B981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.detection-rate {
    text-align: right;
}

.rate-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
}

.rate-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.rate-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #6EE7B7 100%);
    border-radius: 2px;
    transition: width 1s ease;
}

.card-body {
    padding: 1.5rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.metric-row:last-child {
    margin-bottom: 0;
}

.metric-row span:first-child {
    color: var(--text-light);
}

.metric-row span:last-child {
    color: var(--text-white);
    font-weight: 600;
}

/* Services Section */
.services-section {
    margin-bottom: 3rem;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.service-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.service-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-status.operational {
    color: #10B981;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s infinite;
}

.service-uptime {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Activity Section */
.activity-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.activity-timeline {
    max-width: 600px;
}

.activity-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 2.5rem;
    bottom: -2rem;
    width: 2px;
    background: var(--border-color);
}

.activity-item:last-child::before {
    display: none;
}

.activity-time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    min-width: 60px;
}

.activity-content {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.activity-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.activity-icon.info {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-blue);
}

.activity-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.activity-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animations */
@keyframes healthProgress {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0.1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .status-sidebar {
        width: 280px;
    }
    
    .status-main {
        margin-left: 280px;
    }
}

@media (max-width: 768px) {
    .status-dashboard {
        flex-direction: column;
    }
    
    .status-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .status-main {
        margin-left: 0;
    }
    
    .detection-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .status-main-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .status-main-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .status-sidebar,
    .status-main {
        padding: 1rem;
    }
    
    .detection-card .card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .detection-rate {
        text-align: left;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .activity-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .activity-item::before {
        display: none;
    }
}

/* Status Page Styles - Modern Floating Design */
.status-page {
    background: var(--bg-black);
    min-height: 100vh;
    margin-top: 70px;
    position: relative;
}

.status-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(239, 68, 68, 0.08) 0%, transparent 50%);
    animation: sectionGlow 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Floating Background Elements */
.floating-elements {
    display: none;
}

.floating-circle {
    display: none;
}

.circle-1 {
    display: none;
}

.circle-2 {
    display: none;
}

.circle-3 {
    display: none;
}

.floating-square {
    display: none;
}

.square-1 {
    display: none;
}

.square-2 {
    display: none;
}

/* Hero Status Section */
.status-hero {
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #10B981;
    animation: fadeInUp 1s ease-out 0.5s both;
    transition: all 0.3s ease;
}

.status-badge:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.status-pulse {
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.status-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-stat {
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Detection Section */
.detection-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.detection-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.7s both;
}

.detection-card {
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out both;
}

.detection-card:nth-child(1) { animation-delay: 1.9s; }
.detection-card:nth-child(2) { animation-delay: 2.1s; }
.detection-card:nth-child(3) { animation-delay: 2.3s; }
.detection-card:nth-child(4) { animation-delay: 2.5s; }
.detection-card:nth-child(5) { animation-delay: 2.7s; }
.detection-card:nth-child(6) { animation-delay: 2.9s; }

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detection-card:hover .card-glow {
    opacity: 1;
}

.detection-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.card-content {
    position: relative;
    z-index: 2;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.status-indicator.coming-soon {
    color: #F59E0B;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.coming-soon .status-dot {
    background: #F59E0B;
}

.detection-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.metric:last-child {
    border-bottom: none;
}

.metric:hover {
    background: rgba(220, 38, 38, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.metric-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Updates Section */
.updates-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 3.1s both;
}

.updates-timeline {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 3.3s both;
}

.update-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

.update-item:nth-child(1) { animation-delay: 3.5s; }
.update-item:nth-child(2) { animation-delay: 3.7s; }
.update-item:nth-child(3) { animation-delay: 3.9s; }

.update-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(10px);
}

.update-time {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    min-width: 60px;
}

.update-content {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.update-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-blue);
    flex-shrink: 0;
}

.update-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.update-icon.info {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-blue);
}

.update-icon.milestone {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.update-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.update-details p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.update-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status Footer */
.status-footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 4.1s both;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.last-updated,
.auto-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.last-updated i,
.auto-refresh i {
    color: var(--primary-blue);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes progressFill {
    from { stroke-dashoffset: 157; }
    to { stroke-dashoffset: var(--final-offset); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .status-hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .detection-cards {
        grid-template-columns: 1fr;
    }
    
    .health-grid {
        grid-template-columns: 1fr;
    }
    
    .update-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .update-item::before {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .status-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .detection-card {
        padding: 1.5rem;
    }
    
    .health-card {
        padding: 1.5rem;
    }
}

.valorant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #F59E0B 0%, #FCD34D 100%);
}

.card-content {
    position: relative;
    z-index: 2;
}

.product-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #10B981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Configs Page Styles */
.configs-hero {
    min-height: 40vh;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.configs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
    z-index: 1;
}

.configs-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.configs-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.configs-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.configs-main {
    padding: 4rem 0;
    background: var(--bg-black);
    position: relative;
}

.configs-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-blue);
}

.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-white);
}

.game-selector select {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.game-selector select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.configs-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.configs-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.configs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.config-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(13, 13, 13, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.config-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.04) 50%, rgba(220, 38, 38, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.config-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.config-card:hover::before {
    opacity: 1;
}

.config-card:hover::after {
    opacity: 1;
}

.config-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(220, 38, 38, 0.1),
        0 0 20px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.config-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.config-info {
    flex: 1;
}

.config-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-white);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.config-type {
    padding: 0.2rem 0.7rem;
    border-radius: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.config-type.rage {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.config-type.legit {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.config-type.semi {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.config-actions {
    display: flex;
    gap: 0.75rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.action-btn:hover::before {
    transform: translateX(100%);
}

.action-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.config-details {
    position: relative;
    z-index: 2;
}

.config-details p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.config-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.stat:last-child {
    margin-bottom: 0;
}

.stat i {
    color: #aaa; /* Use neutral grey instead of blue */
    font-size: 0.9rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Modal Styles for Configs */
.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-white);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-blue);
    background: rgba(220, 38, 38, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--primary-blue);
    background: rgba(220, 38, 38, 0.1);
}

.file-upload-area i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.file-upload-area p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design for Configs */
@media (max-width: 768px) {
    .configs-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box {
        max-width: none;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .configs-actions {
        justify-content: center;
    }
    
    .configs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .config-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .config-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .configs-header h1 {
        font-size: 2.5rem;
    }
    
    .configs-header p {
        font-size: 1rem;
    }
    
    .config-card {
        padding: 1rem;
    }
    
    .config-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .config-info h3 {
        font-size: 1rem;
    }
    
    .config-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
} 
