/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-image: url('../img/rust.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
    z-index: -1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00d4aa, #00ff88);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Links */
a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00d4aa;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    display: flex;
    gap: 8px;
}

.preloader-icon span {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-icon span:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Header - Clean and Simple */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1 !important;
    visibility: visible !important;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.brand-icon:hover {
    border-color: #00ff88;
    transform: scale(1.05);
}

.navbar-brand p {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

/* Clean Navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-item a {
    color: #b0b0b0;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
    z-index: -1;
}

.navbar-nav .nav-item a:hover::before {
    opacity: 0.1;
}

/* Clean Button */
.button .btn {
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.2);
}

.button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    color: #0a0a0a;
}

/* Hero Section */
.hero-area {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Enhanced Hero Section Styles */
.hero-subtitle {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #00ff88;
}

.feature-badge i {
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #00ff88;
    color: #0a0a0a;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #00ff88, #00d4aa, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #b0b0b0;
    max-width: 600px;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(-10deg) rotateX(-0.5deg) rotateZ(1.5deg); }
    50% { transform: translateY(-20px) rotateY(-10deg) rotateX(-0.5deg) rotateZ(1.5deg); }
}

.hero-image img:hover {
    transform: scale(1.05) rotateY(-10deg) rotateX(-0.5deg) rotateZ(1.5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Features Styling */
.single-feature.featured {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.3);
    transform: scale(1.02);
}

.single-feature.featured:hover {
    transform: scale(1.02) translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.feature-list li {
    padding: 5px 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.feature-list li:before {
    content: "✓";
    color: #00ff88;
    font-weight: bold;
    margin-right: 8px;
}

.single-feature .feature-icon i {
    font-size: 2.5rem;
    color: #00ff88;
}

.single-feature h3 {
    margin: 20px 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.single-feature h4 {
    margin: 15px 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title h3 {
    font-size: 1rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.single-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.single-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.single-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.single-feature:hover::before {
    left: 100%;
}

.single-feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-icon img {
    max-width: 80px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.single-feature:hover .feature-icon img {
    transform: scale(1.1);
}

.single-feature h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.single-feature p {
    color: #b0b0b0;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 0;
}

.single-feature img {
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.single-feature:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.single-feature ul {
    text-align: left;
    margin-top: 20px;
}

.single-feature ul li {
    color: #b0b0b0;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.single-feature ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* Video container styling */
.video-container {
    max-width: 400px; /* Adjust as needed */
    margin-top: 20px;
}

/* Video styling */
.video-container video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.5);
}

/* Weapons Section */
.weapons {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.weapon-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.weapon-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.weapon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
}

.weapon-item img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.weapon-item:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 255, 136, 0.3));
}

.weapon-item h4 {
    color: #00ff88;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Weapon Mods Section */
/* Force weapon mod items into one row with horizontal scroll */
.weapon-mods .row.mods-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #00ff88 transparent;
}

.weapon-mods .row.mods-row::-webkit-scrollbar {
    height: 8px;
}

.weapon-mods .row.mods-row::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 4px;
}

/* Ensure columns don't shrink too small */
.weapon-mods .mods-row .col-lg-2 {
    flex: 0 0 auto;
    width: 160px; /* Adjust width as needed */
}


.mod-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.mod-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
}

.mod-item img {
    transition: all 0.3s ease;
}

.mod-item:hover img {
    transform: scale(1.05);
}

.mod-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* ESP Board Section */
.esp-board {
    padding: 100px 0;
    position: relative;
}

.esp-board::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(22, 33, 62, 0.8) 100%);
    z-index: -1;
}

.esp-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    margin-bottom: 30px;
}

.esp-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.esp-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
}

.esp-features {
    margin: 25px 0;
}

.esp-features h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 15px;
}

.esp-features ul {
    list-style: none;
    padding: 0;
}

.esp-features ul li {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.esp-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.esp-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.esp-note p {
    margin: 0;
    color: #ffc107;
    font-size: 14px;
}

.esp-image {
    text-align: center;
}

.esp-image img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.esp-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
}

.purchase-options {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.purchase-options h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.purchase-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.purchase-option:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.1);
}

.purchase-option h4 {
    font-size: 18px;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 15px;
}

.purchase-option p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
}

.purchase-option .btn {
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    color: #000000;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.purchase-option .btn:hover {
    background: linear-gradient(45deg, #00d4aa, #00ff88);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
    color: #000000;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    position: relative;
}

.pricing .single-pricing {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.pricing .single-pricing.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing .single-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing .single-pricing:hover::before {
    transform: scaleX(1);
}

.pricing .single-pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
}

/* Best Value Styling */
.pricing .single-pricing.best-value {
    border: 2px solid #00ff88;
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.05);
    position: relative;
}

.pricing .single-pricing.best-value:hover {
    transform: scale(1.05) translateY(-10px);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 255, 136, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    }
}

.pricing-header {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.pricing-header h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-header p {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 10px 0;
}

.pricing-header span {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin: 15px 0;
}

.pricing-footer .btn {
    background: linear-gradient(45deg, #00ff88, #00d4aa);
    color: #0a0a0a;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    width: 100%;
    margin-top: 20px;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.pricing-footer .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.6s ease;
}

.pricing-footer .btn:hover::before {
    left: 100%;
}



/* FAQ */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background: rgba(0, 255, 136, 0.1); /* subtle neon green transparent */
    color: #00ff88;
    border: 1.5px solid #00d4aa;
    border-radius: 12px;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem; /* 18px approx */
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 212, 170, 0.2);
}

.faq-question:hover,
.faq-question:focus {
    background-color: rgba(0, 212, 170, 0.25);
    color: #00d4aa;
    border-color: #00ff88;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
    outline: none;
}

.faq-answer {
    display: none;
    background: rgba(26, 26, 46, 0.85);
    border: 1.5px solid #00d4aa;
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 10px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: inset 0 0 8px rgba(0, 212, 170, 0.15);
}


/* Terms content container */
.terms-content {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ff88;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #d0f8e8;
    font-size: 1rem;
    line-height: 1.5;
}

/* Headings inside terms content */
.terms-content h4 {
    color: #00ff88;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Paragraphs and lists */
.terms-content p,
.terms-content ul {
    margin-bottom: 1rem;
    color: #cdecdc;
}

.terms-content ul {
    padding-left: 1.5rem;
}

.terms-content ul li {
    margin-bottom: 0.6rem;
    list-style-type: disc;
}

/* Nested lists */
.terms-content ul ul li {
    list-style-type: circle;
    margin-left: 1rem;
}

/* Links inside terms content if any */
.terms-content a {
    color: #00ff88;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-content a:hover,
.terms-content a:focus {
    color: #00cc6a;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .terms-content {
        padding: 20px 15px;
        margin-bottom: 40px;
    }

    .terms-content h4 {
        font-size: 1.1rem;
    }
}


/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 40px 20px;
    color: #b0b0b0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 100;
    user-select: none;
}

.footer a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00d4aa;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .social-icons a {
    font-size: 1.5rem;
    color: #00ff88;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #00d4aa;
    transform: scale(1.2);
}


.footer .watermark {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #444;
    font-style: italic;
}
