/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

@font-face {
    font-family: 'PixelFont';
    src: url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #33ff33; /* Neon green */
    background-color: #0a0a0a;
    background-image: linear-gradient(rgba(0, 15, 0, 0.9), rgba(0, 10, 0, 0.9)), 
                      url('https://i.imgur.com/ZMsp9Qi.png'); /* Adding a subtle grid pattern */
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.3);
}

a {
    text-decoration: none;
    color: #33ff33;
    transition: all 0.2s;
    cursor: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #33ff33;
}

ul {
    list-style: none;
}

/* Button styles */
.btn {
    display: inline-block;
    background: #111;
    color: #33ff33;
    padding: 8px 16px;
    border: 1px solid #33ff33;
    cursor: none;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    transition: all 0.2s;
    text-transform: uppercase;
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #33ff33;
    color: #000;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.8);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #33ff33;
    animation: btn-border-slide 2s infinite linear;
}

@keyframes btn-border-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.8);
    color: #33ff33;
    padding: 1rem 0;
    border-bottom: 1px solid #33ff33;
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.3);
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.logo h1 {
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.logo h1:before, .logo h1:after {
    content: '[';
    color: #33ff33;
    font-size: 2.5rem;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.logo h1:after {
    content: ']';
    margin-right: 0;
    margin-left: 10px;
}

/* Counter-Strike Style Navigation */
nav {
    margin: 0 auto;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #33ff33;
    padding: 5px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

nav a {
    color: #33ff33;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 15px;
    display: block;
    background: rgba(0, 40, 0, 0.3);
    border: 1px solid #33ff33;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}

nav a:hover {
    background: rgba(0, 80, 0, 0.5);
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

nav a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #33ff33;
    opacity: 0;
    transition: opacity 0.2s;
}

nav a:hover:before {
    opacity: 1;
}

/* Mobile navigation */
.mobile-nav-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 1px solid #33ff33;
    color: #33ff33;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
}

.mobile-nav {
    flex-direction: column;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.9);
    padding: 1rem 0;
}

/* Hero section */
.hero {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #33ff33;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 20, 0, 0.7);
    border: 1px solid #33ff33;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.hero-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(51, 255, 51, 0.05),
        rgba(51, 255, 51, 0.05) 2px,
        transparent 2px,
        transparent 4px
    );
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #33ff33;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(51, 255, 51, 0.7);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero .btn {
    background: #111;
    border: 1px solid #33ff33;
    color: #33ff33;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
}

.hero .btn:hover {
    background: #33ff33;
    color: #000;
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.8);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #33ff33, transparent);
    z-index: 5;
}

/* Featured products section */
.featured-products {
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
}

.featured-products:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 20, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 20, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: -1px -1px;
    pointer-events: none;
    z-index: -1;
}

.featured-products h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #33ff33;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.featured-products h2:before, .featured-products h2:after {
    content: '<<';
    color: #33ff33;
    position: absolute;
    left: -40px;
    top: 0;
}

.featured-products h2:after {
    content: '>>';
    left: auto;
    right: -40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(10, 15, 10, 0.8);
    border: none !important;
    border-radius: 0;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: none !important;
}

.product-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-right: none !important;
    border-bottom: none !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.6);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #33ff33;
    margin-bottom: 1rem;
    filter: brightness(0.9) contrast(1.1);
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.2rem;
    position: relative;
    padding-left: 15px;
}

.product-card h3:before {
    content: '>';
    position: absolute;
    left: 0;
    color: #33ff33;
}

.product-card p {
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.product-card .price {
    font-weight: bold;
    color: #33ff33;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
}

/* Products page */
.products-header {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #33ff33;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.products-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #33ff33, transparent);
}

.products-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #33ff33;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.product-filters {
    background: rgba(5, 10, 5, 0.95);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #33ff33;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.3);
    position: relative;
}

.product-filters::before {
    content: "FILTER SYSTEM v1.6";
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: #000;
    color: #33ff33;
    padding: 0 10px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-filters::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-right: 1px solid #33ff33;
    border-bottom: 1px solid #33ff33;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.filter-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 5px;
    height: 100%;
    border-left: 1px dotted #33ff33;
    opacity: 0.5;
}

.filter-group label {
    font-weight: bold;
    color: #33ff33;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.filter-group label::before {
    content: '>';
    margin-right: 5px;
    color: #33ff33;
    animation: blink 1s infinite;
}

.filter-group select,
.filter-group input {
    padding: 0.5rem;
    border: 1px solid #33ff33;
    background: rgba(0, 20, 0, 0.7);
    color: #ffffff;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.3);
    transition: all 0.2s;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.8);
    background: rgba(0, 30, 0, 0.8);
}

.filter-group select option {
    background-color: #000;
    color: #fff;
}

.product-listing {
    padding: 2rem 1rem 4rem;
}

/* About Us page */
.about-header {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #33ff33;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #33ff33;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-info {
    padding: 3rem 1rem;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid #33ff33;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.3);
}

.about-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.4rem;
    border-bottom: 1px solid #33ff33;
    padding-bottom: 0.5rem;
}

.about-section p {
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.team-member {
    text-align: center;
    border: 1px solid #33ff33;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.7);
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.3);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #33ff33;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.5);
}

.team-member h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.team-member p {
    color: #33ff33;
}

.bullet-list {
    list-style: square;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.bullet-list li {
    margin-bottom: 0.5rem;
}

.bullet-list li::marker {
    color: #33ff33;
}

/* Contact page */
.contact-header {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #33ff33;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
}

.contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #33ff33;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    padding: 3rem 1rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.contact-section {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid #33ff33;
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.3);
}

.contact-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.4rem;
    border-bottom: 1px solid #33ff33;
    padding-bottom: 0.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
    color: #33ff33;
    text-transform: uppercase;
}

.contact-detail p {
    color: #aaaaaa;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #33ff33;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: #111;
    border: 1px solid #33ff33;
    border-radius: 0;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(51, 255, 51, 0.6);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    background: #111;
    border: 1px solid #33ff33;
    color: #33ff33;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.3);
}

.contact-form .btn:hover {
    background: #33ff33;
    color: #000;
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.6);
}

.disclaimer-section {
    padding: 0 1rem 3rem;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid #ffcc00;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.disclaimer-container h3 {
    color: #ffcc00;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.disclaimer-container p {
    color: #cccccc;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #aaaaaa;
    padding: 3rem 1rem 1rem;
    border-top: 1px solid #33ff33;
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.3);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #33ff33;
    text-transform: uppercase;
    border-bottom: 1px solid #33ff33;
    padding-bottom: 0.5rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #aaaaaa;
}

.footer-section a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #222222;
    color: #666666;
    font-size: 0.9rem;
}

/* Form message */
.form-message {
    background: rgba(0, 30, 0, 0.7) !important;
    color: #33ff33 !important;
    border: 1px solid #33ff33 !important;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5) !important;
}

/* Terminal-like cursor animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.product-card h3::after,
.hero h2::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 5px;
    color: #33ff33;
}

/* Scan line effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.2;
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* Tactical design elements */
.tactical-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #33ff33;
    opacity: 0.8;
    margin-top: -5px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.tactical-separator {
    display: flex;
    align-items: center;
    margin: 15px auto;
    max-width: 300px;
}

.tactical-separator span {
    color: #33ff33;
    font-size: 1.5rem;
    margin: 0 10px;
}

.tactical-separator hr {
    flex-grow: 1;
    border: none;
    height: 1px;
    background-color: #33ff33;
    opacity: 0.5;
}

.tactical-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 0, 0, 0) 2px, transparent 2px);
    background-size: 40px 40px;
    background-position: -1px -1px;
    pointer-events: none;
    border: 1px solid rgba(51, 255, 51, 0.1);
    box-sizing: border-box;
    z-index: 1;
}

.tactical-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(51, 255, 51, 0.8);
    color: #000;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    animation: pulse 2s infinite;
}

.tactical-code {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #33ff33;
    opacity: 0.6;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Add animation for certain elements */
@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Section headers with icons */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #33ff33;
    padding-bottom: 0.5rem;
}

.section-icon {
    color: #33ff33;
    font-size: 1.5rem;
    margin-right: 10px;
    font-weight: bold;
}

.section-header h3 {
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 1.4rem;
    border-bottom: none;
    padding-bottom: 0;
}

/* Terminal box style */
.terminal-box {
    background-color: rgba(0, 10, 0, 0.8);
    border: 1px solid #33ff33;
    padding: 15px;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    color: #33ff33;
}

.terminal-line {
    line-height: 1.5;
    margin-bottom: 5px;
}

.terminal-line:last-child {
    margin-bottom: 0;
}

/* Security box */
.security-box {
    border: 1px dashed #ffcc00;
    padding: 15px;
    background-color: rgba(20, 20, 0, 0.3);
}

.security-box p {
    color: #dddddd;
}

/* Contact page styles */
.contact-header, .about-header {
    position: relative;
}

.contact-detail h4, .about-section h4 {
    position: relative;
}

.contact-detail h4::before, .team-member h4::before {
    content: '//';
    color: #33ff33;
    margin-right: 5px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Counter-Strike Themed Tactical Cursor */
.tactical-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid #33ff33;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
}

.tactical-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background-color: #33ff33;
    border-radius: 50%;
}

.tactical-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 1px;
    background-color: #33ff33;
    opacity: 0.5;
    box-shadow: 0 0 5px rgba(51, 255, 51, 0.7);
}

.tactical-cursor.click {
    width: 10px;
    height: 10px;
    border-width: 3px;
    background-color: rgba(51, 255, 51, 0.2);
}

.product-card.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
    border-color: #33ff33;
    background: rgba(0, 30, 0, 0.8);
}

/* Tactical subtitle for terminal effect */
.tactical-subtitle {
    font-family: 'Courier New', monospace;
    color: #33ff33;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.7);
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-left: 3px solid #33ff33;
    letter-spacing: 1px;
    display: inline-block;
    animation: blink-background 4s infinite;
}

@keyframes blink-background {
    0%, 100% { background-color: rgba(0, 0, 0, 0.7); }
    50% { background-color: rgba(0, 20, 0, 0.9); }
}

/* CS-like status indicator */
.cs-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 20, 0, 0.8);
    border: 1px solid #33ff33;
    padding: 5px 10px;
    font-size: 0.8rem;
    color: #33ff33;
    z-index: 1000;
}

.cs-status:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #33ff33;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1.5s infinite;
}

/* Button styling with CS-like appearance */
.cs-button {
    background-color: #0a0a0a;
    color: #33ff33;
    border: 2px solid #33ff33;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: none;
    transition: all 0.2s;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(51, 255, 51, 0.5);
}

.cs-button:hover {
    background-color: #33ff33;
    color: #000;
    box-shadow: 0 0 15px rgba(51, 255, 51, 0.7);
}

.cs-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-right: 1px solid #33ff33;
    border-bottom: 1px solid #33ff33;
}

/* CS Classic inventory grid */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    max-width: 800px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #33ff33;
    padding: 10px;
}

.inventory-slot {
    aspect-ratio: 1;
    background-color: rgba(0, 10, 0, 0.8);
    border: 1px solid #33ff33;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #33ff33;
    font-weight: bold;
    position: relative;
    transition: all 0.2s;
}

.inventory-slot:hover {
    background-color: rgba(0, 30, 0, 0.8);
}

.inventory-slot.active {
    background-color: rgba(51, 255, 51, 0.3);
}

.inventory-slot span {
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 0.7rem;
    color: rgba(51, 255, 51, 0.7);
} 