/* General Styles */
:root {
    --primary-color: #00bfff; /* Bright blue */
    --secondary-color: #1a5fff; /* Deep blue */
    --accent-color: #00ffff; /* Cyan */
    --background-color: #0a0a1a; /* Dark blue-black */
    --text-color: #f4f4f5;
    --card-bg-color: #111133; /* Dark blue */
    --border-color: #1e3a5f; /* Medium blue */
    --success-color: #00ff9d; /* Neon green */
    --grid-color: rgba(0, 191, 255, 0.15);
    --glow-color: rgba(0, 191, 255, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

/* Additional Animations */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 0.99;
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
    }
}

@keyframes terminal-typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--glow-color);
    }
    70% {
        box-shadow: 0 0 10px 10px rgba(0, 191, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
    }
}

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

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px 0 var(--glow-color);
    }
    50% {
        box-shadow: 0 0 30px 5px var(--glow-color);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 20px 0 var(--glow-color);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

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

@keyframes border-glow {
    0%, 100% {
        border-color: var(--border-color);
        box-shadow: 0 0 5px var(--glow-color);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px var(--glow-color);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.9)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%230a84ff' fill-opacity='0.05'%3E%3Cpath d='M0 0h100v1H0zM0 10h100v1H0zM0 20h100v1H0zM0 30h100v1H0zM0 40h100v1H0zM0 50h100v1H0zM0 60h100v1H0zM0 70h100v1H0zM0 80h100v1H0zM0 90h100v1H0zM0 0v100h1V0zM10 0v100h1V0zM20 0v100h1V0zM30 0v100h1V0zM40 0v100h1V0zM50 0v100h1V0zM60 0v100h1V0zM70 0v100h1V0zM80 0v100h1V0zM90 0v100h1V0z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* Enhanced scanline effect with multiple lines */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.4;
    z-index: 9999;
    pointer-events: none;
    animation: scanline 4s linear infinite;
}

/* Additional scanlines */
.scanline-1, .scanline-2 {
    position: fixed;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
    z-index: 9998;
    pointer-events: none;
}

.scanline-1 {
    top: 33%;
    animation: scanline 7s linear 1s infinite;
}

.scanline-2 {
    top: 66%;
    animation: scanline 5s linear 2s infinite;
}

/* Glowing cursor effect */
.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(var(--accent-color), transparent 70%);
    pointer-events: none;
    opacity: 0.3;
    z-index: 9990;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--glow-color);
}

/* Additional keyframes for button animations */
@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%, 100% {
        top: 100%;
    }
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%, 100% {
        right: 100%;
    }
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%, 100% {
        bottom: 100%;
    }
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: -2px 0 var(--primary-color), 2px 0 var(--accent-color);
    }
    25% {
        transform: translate(-2px, 2px);
        text-shadow: 2px -2px var(--primary-color), -2px 2px var(--accent-color);
    }
    50% {
        transform: translate(2px, -2px);
        text-shadow: -2px 2px var(--primary-color), 2px -2px var(--accent-color);
    }
    75% {
        transform: translate(2px, 2px);
        text-shadow: 2px 0 var(--primary-color), -2px 0 var(--accent-color);
    }
    100% {
        transform: translate(0);
        text-shadow: -2px 0 var(--primary-color), 2px 0 var(--accent-color);
    }
}

/* Enhanced button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:active {
    transform: scale(0.95);
    animation: shake 0.3s ease-in-out;
}

.btn-primary {
    background-color: var(--primary-color);
    color: black;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
    color: black;
}

/* Section headers with enhanced animations */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(var(--primary-color), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    border-radius: 50%;
    animation: scale-pulse 3s ease-in-out infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    height: 3px;
    bottom: -10px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.section-header h2::before {
    left: -20px;
    width: 15px;
    animation: pulse 2s infinite;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    animation: gradient-shift 3s ease infinite;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
}

.section-header p {
    color: #b4b4cc;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 15px auto 0;
    position: relative;
}

.section-header p.animated-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--primary-color);
    width: fit-content;
    margin: 15px auto 0;
    animation: terminal-typing 3.5s steps(40, end) 1s 1 normal both;
}

/* Enhanced glitch effect */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch {
    position: relative;
    animation: flicker 0.3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #00ffff;
    z-index: -1;
    transform: translate(1px, 1px);
    animation: flicker 0.2s infinite;
}

.glitch::after {
    color: #ff00ff;
    z-index: -2;
    transform: translate(-1px, -1px);
    animation: flicker 0.3s infinite;
}

/* Modified Glitch Effect */
.glitch.active {
    animation: glitch 0.5s linear infinite;
}

/* Special highlight for selected elements */
.highlight-text {
    animation: color-cycle 5s infinite;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--success-color), var(--primary-color));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
}

/* Enhanced image placeholder */
.img-placeholder {
    background-color: rgba(0, 191, 255, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    animation: border-glow 4s ease-in-out infinite;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%, transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%, transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%, transparent);
    background-size: 30px 30px;
    animation: float 6s ease-in-out infinite;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: rotate-glow 10s linear infinite;
}

/* Enhanced feature cards */
.feature-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(235deg, var(--primary-color), transparent, var(--primary-color));
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.2), transparent 70%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--glow-color);
    position: relative;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--glow-color);
}

.feature-card p {
    color: #b4b4cc;
    position: relative;
    z-index: 1;
}

/* Enhanced pricing cards */
.pricing-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
    position: relative;
    animation: border-glow 4s ease-in-out infinite;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: black;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: blink 2s ease-in-out infinite;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #00bfff;
    margin: 10px 0 0 0;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card:hover .pricing-price {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.9);
}

.pricing-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

/* Promotional badge for discounts */
.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: black;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: blink 2s ease-in-out infinite;
    transform: rotate(5deg);
}

.promo-text {
    display: inline-block;
    color: var(--success-color);
    font-weight: bold;
    margin-left: 5px;
    text-shadow: 0 0 5px var(--glow-color);
}

/* Enhanced animated button for pricing */
.animated-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    width: 100%;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.5s;
    background-color: var(--card-bg-color);
    border: none;
    cursor: pointer;
    min-height: 55px;
}

.animated-button:hover {
    background: var(--primary-color);
    color: black;
    box-shadow: 0 0 25px var(--primary-color);
}

.animated-button span {
    position: absolute;
    display: block;
}

.animated-button span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    animation: btn-anim1 2s linear infinite;
}

.animated-button span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent-color));
    animation: btn-anim2 2s linear infinite;
    animation-delay: 0.5s;
}

.animated-button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--accent-color));
    animation: btn-anim3 2s linear infinite;
    animation-delay: 1s;
}

.animated-button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--accent-color));
    animation: btn-anim4 2s linear infinite;
    animation-delay: 1.5s;
}

/* Enhanced contact item */
.contact-item {
    display: flex;
    align-items: center;
    background-color: var(--card-bg-color);
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(235deg, var(--primary-color), transparent, var(--primary-color));
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item a {
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--text-color);
    text-decoration: none;
    z-index: 1;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    text-shadow: 0 0 5px var(--glow-color);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item span {
    font-size: 1rem;
    position: relative;
}

.contact-item span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.contact-item:hover span::after {
    width: 100%;
}

/* Enhanced footer */
.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--card-bg-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.3), transparent 70%);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover i {
    color: black;
    animation: scale-pulse 1s ease-in-out infinite;
}

/* Matrix Digital Rain Animation with enhanced opacity */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.05;
    pointer-events: none;
}

/* Terminal typing effect with cursor */
.terminal-text {
    overflow: visible;
    white-space: normal;
    margin: 0 auto;
    letter-spacing: 0.1em;
    font-family: 'Courier New', monospace;
    border-right: 2px solid var(--primary-color);
    border-right: none;
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
    animation: blink 1s step-end infinite;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 0 5px var(--glow-color);
}

/* Particle container */
.particles-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background-color: var(--primary-color);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 10px 1px var(--primary-color);
}

/* Spotlight effect */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                rgba(0, 191, 255, 0.1) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Media queries update */
@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 10px 0;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-image {
        margin-left: 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    
    .motherboard-container {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .motherboard-svg {
        width: 100px;
        height: 100px;
    }

    .hero-image {
        min-height: 200px;
        margin-top: 20px;
    }

    .hero-image .hero-logo {
        width: 90%;
        min-height: 150px;
        background: radial-gradient(circle at center, rgba(10, 10, 26, 0.5), transparent 100%);
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
        width: 100%;
    }

    .feature-card, .pricing-card, .testimonial-card {
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
    }
    
    .hero .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 20px;
    }
    
    .terminal-text-container {
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
        min-height: 30px;
    }
    
    .hero-content .terminal-text {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
}

/* Styling for the mobile menu when active */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 26, 0.95);
    padding: 20px;
    z-index: 100;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.active li {
    margin: 10px 0;
    text-align: center;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px var(--glow-color));
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
    animation: flicker 5s infinite;
    text-shadow: 0 0 8px var(--glow-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--glow-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0 30px;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.1), transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        linear-gradient(0deg, transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%, transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%, transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-right: 2rem;
    width: 60%;
    padding: 0.2rem 0;
    gap: 2px;
}

.hero-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    overflow: visible;
    width: 100%;
}

.hero-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--glow-color));
    animation: float 6s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    word-break: break-word;
    text-shadow: 0 0 10px var(--glow-color);
}

.hero-content h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    box-shadow: 0 0 10px var(--glow-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: #b4b4cc;
    margin-bottom: 40px;
    font-family: 'Courier New', monospace;
    border-right: 2px solid var(--primary-color);
    overflow: hidden;
    white-space: nowrap;
    animation: terminal-typing 4s steps(40, end) 1s 1 normal both;
}

.hero-image {
    flex: 1;
    margin-left: 40px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-image .hero-logo {
    position: relative;
    height: auto;
    width: 80%;
    min-height: 200px;
    min-width: 200px;
    max-height: 400px;
    max-width: 100%;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--glow-color)) brightness(1.5) contrast(1.2);
    background: radial-gradient(circle at center, rgba(10, 10, 26, 0.7), transparent 100%);
    padding: 20px;
    border-radius: 10px;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(var(--primary-color), transparent 70%);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(0, 191, 255, 0.1), transparent 70%);
    position: relative;
}

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

/* Pricing Section */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) minmax(250px, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: rgba(0, 191, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-description {
    color: #b4b4cc;
    font-size: 0.95rem;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.pricing-button {
    padding: 0 30px 30px;
    text-align: center;
    position: relative;
}

.pricing-button button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    height: 55px;
}

.pricing-button button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.pricing-button button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.pricing-button button:hover::before {
    left: 100%;
}

.pricing-button .crypto-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    margin-left: 12px;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(135deg, #ff9900, #ff7300);
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
    animation: blink 2s infinite;
    transform: translateY(-10px);
    vertical-align: middle;
    /* Position fixed */
    z-index: 5;
}

@media screen and (max-width: 768px) {
    .pricing-button .crypto-badge {
        font-size: 0.95rem;
        padding: 6px 12px;
        transform: translateY(-8px);
    }
}

/* Update crypto badge positioning when in pricing-button */
.pricing-button .crypto-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    margin-left: 12px;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(135deg, #ff9900, #ff7300);
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
    animation: blink 2s infinite;
    transform: translateY(-10px);
    vertical-align: middle;
    /* Position fixed */
    z-index: 5;
}

@media screen and (max-width: 768px) {
    .pricing-button .crypto-badge {
        font-size: 0.95rem;
        padding: 6px 12px;
        transform: translateY(-8px);
    }
}

/* Add responsiveness for the crypto badge on smaller screens */
@media screen and (max-width: 768px) {
    .crypto-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .crypto-option {
        padding: 10px;
    }
    
    .crypto-payment-section {
        padding: 20px;
    }
    
    .pricing-button button {
        width: 100%;
        flex-wrap: wrap;
        gap: 5px;
        padding: 12px 15px;
    }
    
    /* Remove conflicting style that's making the badge too small */
    /* .pricing-button .crypto-badge {
        font-size: 8px;
        padding: 2px 5px;
        margin-left: 5px;
    } */
}

/* New Product Details Styles */
.product-details {
    margin-top: 80px;
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.product-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.details-section {
    margin-bottom: 40px;
    position: relative;
}

.details-section:last-child {
    margin-bottom: 0;
}

.details-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-section h3 i {
    margin-right: 10px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.details-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.details-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.details-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    box-shadow: 0 0 5px var(--glow-color);
}

.details-column ul {
    list-style: none;
}

.details-column ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #b4b4cc;
}

.details-column ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.details-column p {
    color: #b4b4cc;
    line-height: 1.6;
}

.warning-text {
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 10px;
}

.guarantee-section {
    background-color: rgba(0, 255, 157, 0.1);
    border: 1px solid var(--success-color);
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.guarantee-section i {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.guarantee-section h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--success-color);
}

.guarantee-section p {
    color: #b4b4cc;
}

/* Media query for product details on smaller screens */
@media screen and (max-width: 768px) {
    .details-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-details {
        padding: 30px 20px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(0, 191, 255, 0.1), transparent 70%);
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.faq-question:hover {
    background-color: rgba(0, 191, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    color: #b4b4cc;
    border-left: 3px solid var(--primary-color);
    overflow: visible;
    height: auto;
    word-wrap: break-word;
    white-space: normal;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    white-space: normal;
    overflow: visible;
    animation: none;
    border-right: none;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.2);
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    text-align: right;
    font-style: italic;
    color: #b4b4cc;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(0, 191, 255, 0.1), transparent 70%);
    position: relative;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Footer */
footer {
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px var(--glow-color));
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--glow-color);
}

.footer-logo p {
    color: #b4b4cc;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links-column {
    margin-right: 60px;
    margin-bottom: 30px;
}

.footer-links-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 5px var(--glow-color);
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #b4b4cc;
    font-size: 0.9rem;
}

/* Animated Motherboard Styles */
@keyframes mb-pulse {
    0%, 100% {
        opacity: 0.7;
        r: 20;
    }
    50% {
        opacity: 1;
        r: 22;
    }
}

@keyframes mb-blink {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes mb-trace-glow {
    0%, 100% {
        stroke-dashoffset: 0;
        stroke-width: 1;
        stroke: var(--accent-color);
    }
    50% {
        stroke-dashoffset: 30;
        stroke-width: 2;
        stroke: var(--primary-color);
    }
}

.motherboard-container {
    margin-right: 25px;
    position: relative;
    flex-shrink: 0;
}

.motherboard-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 10px var(--glow-color));
    transition: transform 0.3s ease;
}

.motherboard-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--accent-color));
}

/* Interactive hover effects */
.mb-cpu:hover, .mb-ram:hover, .mb-chipset:hover, .mb-power:hover {
    fill: var(--primary-color);
    opacity: 0.7;
    cursor: pointer;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.mb-pci:hover, .mb-sata:hover {
    stroke: var(--accent-color);
    stroke-width: 1.5;
    cursor: pointer;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.mb-led:hover {
    fill: var(--accent-color);
    r: 23;
    filter: drop-shadow(0 0 10px var(--accent-color));
    cursor: pointer;
    transition: fill 0.3s ease, filter 0.3s ease;
}

.mb-board {
    fill: #111133;
    stroke: var(--border-color);
    stroke-width: 1;
}

.mb-cpu {
    fill: #222244;
    stroke: var(--accent-color);
    stroke-width: 1;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.mb-ram {
    fill: #222244;
    stroke: var(--primary-color);
    stroke-width: 1;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.mb-pci {
    fill: #1a1a3a;
    stroke: var(--primary-color);
    stroke-width: 0.8;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.mb-chipset {
    fill: #222244;
    stroke: var(--secondary-color);
    stroke-width: 0.8;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.mb-power {
    fill: #1a1a3a;
    stroke: var(--accent-color);
    stroke-width: 1;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.mb-sata {
    fill: #1a1a3a;
    stroke: var(--secondary-color);
    stroke-width: 0.5;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.mb-led {
    fill: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--glow-color));
    transition: fill 0.3s ease, filter 0.3s ease, r 0.3s ease;
}

.mb-pulse {
    animation: mb-pulse 2s ease-in-out infinite;
}

.mb-blink {
    animation: mb-blink 1.5s ease-in-out infinite;
}

.mb-trace {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1;
    stroke-dasharray: 5;
}

.mb-glow {
    animation: mb-trace-glow 3s linear infinite;
}

.hero-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive adjustments for the motherboard */
@media screen and (max-width: 768px) {
    .motherboard-svg {
        width: 90px;
        height: 90px;
    }
    
    .motherboard-container {
        margin-right: 15px;
    }
}

/* Add specific styles for the hero terminal text */
.terminal-text-container {
    min-height: 30px;
    margin-top: 0;
    margin-bottom: 0.3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
    will-change: min-height;
    transition: min-height 0.3s ease;
}

.hero-content .terminal-text {
    font-family: 'Courier New', monospace;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
    line-height: 1.4;
    letter-spacing: 0.05em;
    white-space: pre-wrap;
    word-break: break-word;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    margin: 0;
    padding: 0;
}

@keyframes blink-cursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--accent-color); }
}

.hero-content .terminal-text[style*="border-right"] {
    animation: blink-cursor 1s step-end infinite;
}

@media screen and (max-width: 768px) {
    .terminal-text-container {
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
        min-height: 30px;
    }
    
    .hero-content .terminal-text {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
        padding: 0.2rem 0;
        margin-right: 0;
        gap: 2px;
    }
    
    .cta-buttons {
        margin-top: 0.5rem;
    }
}

/* Cryptocurrency Payment Options */
.crypto-payment-section {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    height: fit-content;
    align-self: start;
    padding: 25px;
}

.crypto-payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.crypto-payment-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    position: relative;
}

.crypto-payment-section h3 i {
    margin-right: 10px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.crypto-payment-section p.payment-note {
    color: #b4b4cc;
    margin-bottom: 15px;
    padding-left: 5px;
    border-left: 2px solid var(--primary-color);
    font-size: 0.95rem;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 5px;
}

@media screen and (max-width: 992px) {
    .crypto-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.crypto-option {
    background-color: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 8px 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crypto-option::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(235deg, var(--primary-color), transparent, var(--primary-color));
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
}

.crypto-option:hover::before {
    opacity: 1;
}

.crypto-icon {
    width: 35px;
    height: 35px;
    background-color: var(--card-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.crypto-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.crypto-name {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-color);
    text-align: center;
}

.crypto-status {
    font-size: 0.75rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 3px;
}

.crypto-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--success-color);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--success-color);
    animation: blink 2s infinite;
}

.crypto-disclaimer {
    margin-top: 10px;
    padding: 8px;
    background-color: rgba(0, 191, 255, 0.1);
    border-radius: 5px;
    font-size: 0.85rem;
    color: #b4b4cc;
    border-left: 3px solid var(--primary-color);
}

.crypto-disclaimer small {
    font-size: inherit;
    font-weight: normal;
    display: block;
    line-height: 1.4;
}

/* Crypto payment badge for pricing cards */
.crypto-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(135deg, #ff9900, #ff7300);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
    animation: blink 2s infinite;
    z-index: 2;
}

/* Specific fix for the ONETIME-USE button crypto badge */
.crypto-badge.onetime-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-left: 12px !important;
    transform: translateY(-16px) !important;
    vertical-align: middle !important;
}

@media screen and (max-width: 768px) {
    .crypto-badge.onetime-badge {
        transform: translateY(-13px) !important;
        font-size: 1rem !important;
        padding: 7px 12px !important;
    }
}

/* Card badge for pricing cards */
.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    margin-left: 12px;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(45deg, #000000, #333333);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    animation: blink 2s infinite;
    transform: translateY(-16px);
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .card-badge {
        font-size: 1rem;
        padding: 7px 12px;
        transform: translateY(-14px);
    }
}

/* Reseller modal */
.reseller-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reseller-modal.show {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

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

.reseller-container {
    background-color: #0f0f1a;
    border-radius: 8px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

.reseller-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), #001f33);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.reseller-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.reseller-header h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.reseller-close {
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reseller-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.reseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.reseller-card {
    background-color: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reseller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.2);
    border-color: var(--primary-color);
}

.reseller-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 191, 255, 0.5));
}

.reseller-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.reseller-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.reseller-btn {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: black;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}

.reseller-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.reseller-btn.onetime {
    background-color: var(--primary-color);
}

.reseller-btn.lifetime {
    background-color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .reseller-container {
        padding: 20px;
    }
    
    .reseller-grid {
        grid-template-columns: 1fr;
    }
    
    .card-badge {
        font-size: 1rem;
        padding: 7px 12px;
        transform: translateY(-14px);
    }
}

.reseller-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 191, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
}

.reseller-error {
    text-align: center;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

.reseller-error i {
    font-size: 3rem;
    color: #ff5252;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 82, 82, 0.5));
}

.reseller-error p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Style adjustments for the card button */
.pricing-button {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media screen and (max-width: 768px) {
    .pricing-button {
        gap: 10px;
    }
}

.pricing-button .card-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    margin-left: 12px;
    line-height: 1;
    font-weight: 600;
    background: linear-gradient(45deg, #000000, #333333);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    animation: blink 2s infinite;
    transform: translateY(-5px);
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .pricing-button .card-badge {
        font-size: 1rem;
        padding: 7px 12px;
        transform: translateY(-4px);
    }
}

/* Media queries for responsive design */
@media screen and (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crypto-payment-section {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-payment-section {
        grid-column: 1;
        margin-top: 30px;
    }
    
    .terminal-text-container {
        text-align: center;
        justify-content: center;
        margin-bottom: 0;
        min-height: 30px;
    }
    
    .hero-content .terminal-text {
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
        padding: 0.2rem 0;
        margin-right: 0;
        gap: 2px;
    }
    
    .cta-buttons {
        margin-top: 0.5rem;
    }
}

/* Animated Crypto Icons */
.crypto-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px;
  position: relative;
  overflow: hidden;
}

.crypto-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, rgba(0,0,0,0), rgba(255,255,255,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  box-sizing: border-box;
}

.crypto-icon img {
  display: none; /* Hide the existing images */
}

/* Bitcoin Icon */
.crypto-icon-btc {
  background: radial-gradient(circle, rgba(247,147,26,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-btc::after {
  content: 'Ƀ';
  color: #f7931a;
  font-size: 22px;
  font-weight: bold;
  transform: rotate(12deg);
  text-shadow: 0 0 8px rgba(247,147,26,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

/* Ethereum Icon */
.crypto-icon-eth {
  background: radial-gradient(circle, rgba(98,126,234,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-eth::after {
  content: '';
  width: 18px;
  height: 28px;
  background: conic-gradient(from 180deg at 50% 65%, transparent 0deg, transparent 60deg, #627eea 60deg, #627eea 300deg, transparent 300deg, transparent 360deg);
  clip-path: polygon(50% 0%, 100% 60%, 50% 100%, 0% 60%);
  box-shadow: 0 0 8px rgba(98,126,234,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

/* BNB Icon */
.crypto-icon-bnb {
  background: radial-gradient(circle, rgba(243,186,47,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-bnb::after {
  content: '';
  width: 22px;
  height: 22px;
  background: #f3ba2f;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 8px rgba(243,186,47,0.5);
  animation: crypto-rotate 4s linear infinite;
}

/* Litecoin Icon */
.crypto-icon-ltc {
  background: radial-gradient(circle, rgba(52,93,157,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-ltc::after {
  content: 'Ł';
  color: #345d9d;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(52,93,157,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

/* Tron Icon */
.crypto-icon-trx {
  background: radial-gradient(circle, rgba(255,0,19,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-trx::after {
  content: '';
  width: 24px;
  height: 20px;
  background: linear-gradient(45deg, #ff0013, #ff5757);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  box-shadow: 0 0 8px rgba(255,0,19,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

/* USDT ERC20 Icon */
.crypto-icon-usdt-erc20 {
  background: radial-gradient(circle, rgba(38,161,123,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-usdt-erc20::after {
  content: 'T';
  color: #26a17b;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(38,161,123,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

/* USDC BEP20 Icon */
.crypto-icon-usdc-bep20 {
  background: radial-gradient(circle, rgba(39,117,202,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-usdc-bep20::after {
  content: 'C';
  color: #2775ca;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(39,117,202,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

/* USDT TRC20 Icon */
.crypto-icon-usdt-trc20 {
  background: radial-gradient(circle, rgba(38,161,123,0.15) 0%, rgba(0,0,0,0) 70%);
}

.crypto-icon-usdt-trc20::after {
  content: 'T';
  color: #26a17b;
  font-size: 22px;
  font-weight: bold;
  position: relative;
  text-shadow: 0 0 8px rgba(38,161,123,0.5);
  animation: crypto-pulse 2s infinite alternate;
}

.crypto-icon-usdt-trc20::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, rgba(255,0,19,0.3), rgba(38,161,123,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  box-sizing: border-box;
}

/* Animation for crypto icons */
@keyframes crypto-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes crypto-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced crypto option hover effect */
.crypto-option:hover .crypto-icon::before {
  background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.5));
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.crypto-option:hover .crypto-icon::after {
  animation-duration: 1s;
}

/* Status indicator enhancement */
.crypto-status {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.75rem;
  margin-top: 2px;
}

.crypto-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #00ff4c;
  border-radius: 50%;
  margin-right: 0;
  box-shadow: 0 0 8px #00ff4c;
  animation: blink 2s infinite;
} 

/* General crypto badge styling */
.crypto-badge {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
    border-radius: 30px !important;
    background: linear-gradient(135deg, #ff9900, #ff7300) !important;
    color: #fff !important;
    margin-left: 12px !important;
    transform: translateY(-6px) !important;  /* Changed from -10px to -6px */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    z-index: 5 !important;
    top: auto !important;
    left: auto !important;
    vertical-align: middle !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

@media screen and (max-width: 768px) {
    .crypto-badge {
        font-size: 0.95rem !important;
        padding: 5px 10px !important;
        transform: translateY(-5px) !important;  /* Changed from -8px to -5px */
    }
}

/* Fix for SINGLE-USE button crypto badge alignment */
.pricing-card:first-child .pricing-button .crypto-badge {
    transform: translateY(-6px) !important;
}

@media screen and (max-width: 768px) {
    .pricing-card:first-child .pricing-button .crypto-badge {
        transform: translateY(-4px) !important;
    }
}

/* Fix for extra space at bottom of featured card */
.pricing-card.featured .pricing-button {
    padding-bottom: 15px;
}

/* Fix for extra space at bottom of featured card */
.pricing-card.featured .pricing-button {
    padding-bottom: 15px;
}

/* Additional fixes to make the LIFETIME card more compact */
.pricing-card.featured .pricing-features {
    padding: 20px 30px;
}

.pricing-card.featured .pricing-features li {
    margin-bottom: 10px;
}

.pricing-card.featured {
    display: flex;
    flex-direction: column;
}

/* Fix for extra space in the featured card */
.pricing-card.featured .pricing-button {
    padding-bottom: 15px;
}

/* Additional fixes to make the LIFETIME card more compact */
.pricing-card.featured .pricing-features {
    padding: 20px 30px;
}

.pricing-card.featured .pricing-features li {
    margin-bottom: 10px;
}

.pricing-card.featured {
    display: flex;
    flex-direction: column;
}

/* Further adjustments to reduce spacing */
.pricing-card.featured .pricing-header {
    padding-bottom: 10px;
}

/* Comprehensive fix for LIFETIME card spacing */
.pricing-card.featured {
    display: flex;
    flex-direction: column;
}

.pricing-card.featured .pricing-header {
    padding-bottom: 10px;
}

.pricing-card.featured .pricing-features {
    padding: 15px 30px;
}

.pricing-card.featured .pricing-features li {
    margin-bottom: 8px;
}

.pricing-card.featured .pricing-button {
    padding-top: 10px;
    padding-bottom: 15px;
}

/* CLEAN FIX FOR FEATURED CARD SPACING */
.pricing-card.featured {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured .pricing-header {
    padding-bottom: 5px;
}

.pricing-card.featured .pricing-features {
    padding: 10px 30px 15px;
}

.pricing-card.featured .pricing-features li {
    margin-bottom: 6px;
}

.pricing-card.featured .pricing-button {
    padding: 10px 30px 15px;
    margin-top: auto;
}

.pricing-card.featured .pricing-features {
    padding: 5px 30px 10px;
}

.pricing-card.featured .pricing-header {
    padding-bottom: 0px;
}

/* Base Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13, 17, 23, 0.95);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-menu {
        display: block;
    }

    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-card {
        margin: 10px auto;
        max-width: 100%;
    }

    .pricing-features {
        padding: 15px;
    }

    .pricing-button {
        padding: 15px;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .crypto-option {
        padding: 15px;
    }

    .details-columns {
        flex-direction: column;
    }

    .details-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
    }

    .footer-links-column {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 15px;
    }

    .pricing-header h3 {
        font-size: 1.4rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }

    .crypto-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .pricing-header h3 {
        font-size: 1.2rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .crypto-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

.crypto-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #2b2f36, #1a1d21);
    color: #00bfff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
    margin-left: 10px;
    position: relative;
    transform: translateY(-2px);
}

.pricing-button .crypto-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(-2px);
    margin-left: 10px;
    white-space: nowrap;
}

.pricing-card:first-child .pricing-button .crypto-badge {
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .crypto-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
        margin-left: 8px;
        transform: translateY(-1px);
    }

    .pricing-button .crypto-badge {
        transform: translateY(-1px);
        margin-left: 8px;
    }

    .pricing-card:first-child .pricing-button .crypto-badge {
        margin-left: 8px;
    }

    .pricing-button {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pricing-button button {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .crypto-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
        margin-left: 6px;
    }

    .pricing-button {
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }
}

@media screen and (max-width: 360px) {
    .pricing-button {
        flex-direction: column;
        align-items: stretch;
    }

    .crypto-badge {
        margin: 5px auto;
        transform: none;
    }

    .pricing-button .crypto-badge {
        margin: 5px auto;
        transform: none;
    }
}