/* Modern Black/White/Gray Theme with Lime Green Accent */
:root {
    --primary-color: #00FF00;      /* Lime green - accent color (minimal usage) */
    --secondary-color: #1ED760;    /* Lighter lime green - secondary brand color */
    --accent-color: #32CD32;       /* Medium lime green - accent highlight */
    --dark-primary: #121212;       /* Very dark gray - main background */
    --dark-secondary: #181818;     /* Dark gray - card backgrounds */
    --dark-tertiary: #282828;      /* Medium dark gray - hover states */
    --light-gray: #B3B3B3;         /* Light gray - secondary text */
    --lighter-gray: #ECECEC;      /* Lighter gray - borders */
    --text-light: #FFFFFF;         /* White - primary text */
    --text-muted: #9E9E9E;         /* Medium gray - secondary text */
}

body {
    background-color: var(--dark-primary);
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.site-header {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
}

.site-header.scrolled {
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    color: var(--primary-color);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    background-color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: black;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--secondary-color);
    color: black;
}

/* Slider Modifications */
.slide-overlay {
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.8) 50%, rgba(18, 18, 18, 0.7) 100%);
}

.slide-title {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.slider-dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--dark-primary);
}

/* Section Styles */
.section-title {
    font-weight: 800;
}

.section-title::after {
    background: var(--primary-color);
}

.features-section {
    background-color: var(--dark-secondary);
}

.features-section::before {
    background: linear-gradient(180deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-tertiary), var(--dark-secondary));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.05), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 0, 0.1);
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.3);
    transition: all 0.4s ease;
}

.feature-icon-container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.feature-icon-container i {
    font-size: 1.8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.7));
    transition: all 0.4s ease;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.feature-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
    width: 100%;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: var(--text-light);
}

/* Game Cards */
.game-card {
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px 12px;
    background: linear-gradient(to top, rgba(13, 13, 31, 0.9), transparent);
    transition: all 0.3s ease;
}

.game-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px;
}

.game-cta {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--black-primary);
    overflow: hidden;
}

.testimonials-section .section-title {
    margin-bottom: 50px;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00FF00;
    border-radius: 2px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: var(--dark-tertiary);
    border-radius: 8px;
    padding: 30px;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(30, 30, 30, 0.2);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #00FF00;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.testimonials-prev,
.testimonials-next {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    margin: 0 5px;
    font-size: 1.2rem;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    color: #00FF00;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #00FF00;
    transform: scale(1.2);
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Contact Form */
.contact-card {
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-control {
    background-color: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.2);
}

/* Footer */
.site-footer {
    background-color: var(--dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer h5::after {
    background: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-primary);
    transform: translateY(-3px);
}

/* Additional Modern UI Elements */
.glass-card {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.neon-border {
    border: 1px solid transparent;
    border-image: linear-gradient(45deg, var(--primary-color), transparent) 1;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

/* Animations */
@keyframes pulse-green {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.2);
    }
    50% { 
        box-shadow: 0 0 0 5px rgba(0, 255, 0, 0);
    }
}

.pulse-animation {
    animation: pulse-green 2s infinite;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .feature-card, .game-card, .testimonial-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: none; /* Hide mobile toggle since we removed it */
    }
    
    .mobile-menu {
        display: none; /* Ensure mobile menu is never shown */
    }
    
    /* Clean up remaining mobile styles */
    .nav-menu {
        display: flex;
        justify-content: flex-end;
    }
}

/* Cross-browser compatibility fixes */
.game-thumbnail, 
.testimonial-card, 
.contact-card, 
.feature-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Prevent Safari border radius overflow bug */
.game-thumbnail {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* Browser-specific fixes */
@supports (-ms-ime-align:auto) {
  /* Edge specific styles */
  .slide-title, .section-title {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  
  .slider-dot.active {
    background-color: white;
  }
  
  .glass-card {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

/* Firefox specific styles */
@-moz-document url-prefix() {
  .slide-title, .section-title {
    color: white; 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  
  .slider-dot.active {
    background-color: white;
  }
  
  .glass-card {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

/* IE specific styles */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .slide-title, .section-title {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  
  .slider-dot.active {
    background-color: white;
  }
  
  .glass-card {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

/* Improved animations for better performance */
.feature-card, .game-card, .testimonial-card {
    will-change: transform;
}

/* Optimize for touch devices */
@media (hover: none) {
    .cta-button:hover,
    .nav-menu a:hover,
    .footer-links a:hover,
    .social-links a:hover {
        transform: none;
    }
}

/* Fix for iOS overflow issues */
body, html {
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
}

/* Fix for image sizing on game cards */
.game-thumbnail img {
    object-fit: contain;
    background-color: var(--dark-tertiary);
}

/* Remove RGB animation from logo */
.logo-text {
    position: relative;
    color: white;
    text-decoration: none;
}

/* Remove animation effects from logo */
.logo-text::after {
    display: none;
}

.animated-logo:hover .logo-text {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Utility class for removing underlines */
.no-underline, 
.no-underline:hover, 
.no-underline:focus, 
.no-underline:active {
    text-decoration: none !important;
}

/* Games Slider - fixed for mobile */
.games-slider {
    display: flex;
    white-space: nowrap;
    padding: 15px 0;
    overflow: visible;
    width: auto;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-x;
}

/* Make sure links and buttons are clickable */
.game-card a,
.game-cta {
    position: relative;
    z-index: 5; /* Ensure links are on top for clicking */
    cursor: pointer !important;
}

/* Ensure thumbnail clicks work */
.game-thumbnail {
    pointer-events: auto !important;
}

.games-slider:active {
    cursor: grabbing !important;
}

.games-slider:hover {
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.3);
    border-radius: 10px;
}

.games-slider-container {
    position: relative;
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
    width: 100%;
}

.game-slide {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .game-slide {
        width: 160px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .game-slide {
        width: 140px;
        margin: 0 5px;
    }
}

/* Custom styles for game-card in the slider */
.games-slider .game-card {
    height: 180px;
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games-slider .game-thumbnail {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Game thumbnail image size adjustment */
.games-slider .game-thumbnail img {
    object-fit: contain;
    background-color: var(--dark-bg);
    height: 100%;
    width: 100%;
    padding: 5px;
}

/* Improved animation performance */
@keyframes slideAnimation {
    0% { 
        transform: translate3d(0, 0, 0); 
    }
    100% { 
        transform: translate3d(-100%, 0, 0); 
    }
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    .logo-container {
        width: 100%;
    }
    
    .logo-container .logo-text {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .logo-container .logo-icon {
        font-size: 1.5rem;
        margin-right: 0;
    }
    
    .logo-container .cta-button {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* More forceful removal of underlines */
.logo-text, 
.logo-text:hover, 
.logo-text:active, 
.logo-text:focus,
.logo-text:visited,
a.logo-text,
a.logo-text:hover,
a.logo-text:active,
a.logo-text:focus,
a.logo-text:visited,
.animated-logo .logo-text,
.animated-logo:hover .logo-text,
.animated-logo:active .logo-text,
.animated-logo:focus .logo-text,
.no-underline,
.no-underline:hover,
.no-underline:active,
.no-underline:focus,
.no-underline:visited,
a.no-underline,
a.no-underline:hover,
a.no-underline:active,
a.no-underline:focus,
a.no-underline:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Payment Methods Section */
.payment-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--black-primary);
    overflow: hidden;
}

.payment-intro {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 16px;
    background: rgba(40, 40, 40, 0.5);
    border: 1px solid rgba(151, 60, 255, 0.1);
}

.payment-card {
    background: var(--dark-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(151, 60, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(151, 60, 255, 0.3);
}

.payment-card-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-card-header i {
    font-size: 1.5rem;
}

.payment-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.payment-card-body {
    padding: 25px;
}

.payment-method {
    display: flex;
    margin-bottom: 30px;
}

.payment-method:last-child {
    margin-bottom: 0;
}

.payment-method-icon {
    flex: 0 0 50px;
    height: 50px;
    background: rgba(151, 60, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.payment-method-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-method-details {
    flex: 1;
}

.payment-method-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.payment-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.payment-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .payment-method {
        flex-direction: column;
    }
    
    .payment-method-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* Remove hover tooltip */
.games-section:hover::after {
    display: none;
}

/* Animation keyframes that work properly */
@keyframes slideAnimation {
    0% { 
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); 
    }
    100% { 
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0); 
    }
}

/* No underline for cta-button in nav */
.nav-menu li .cta-button,
.nav-menu li .cta-button:hover,
.nav-menu li .cta-button:focus,
.nav-menu li .cta-button:active {
    text-decoration: none !important;
}

.nav-menu li .cta-button::after {
    display: none;
}

/* Feature Section Improvements */
.feature-icon-container {
    background: var(--dark-tertiary);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-icon-container i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-container {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.feature-card:hover .feature-icon-container i {
    transform: scale(1.1);
}

/* Enhanced Mobile Responsiveness for Features Section */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-section .container {
        padding: 0 20px;
    }
    
    .features-section .row {
        margin: 0 -10px;
    }
    
    .features-section .col-md-4 {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 20px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        text-align: left;
        height: auto;
        border-radius: 12px;
    }
    
    .feature-icon-container {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .feature-icon-container i {
        font-size: 1.25rem;
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .feature-title::after {
        display: none;
    }
    
    .feature-description {
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.4;
    }
    
    /* Special card effect for mobile */
    .feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--primary-color);
        box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    
    .feature-card:hover::after {
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        bottom: -10px;
        width: 60px;
        height: 3px;
    }
    
    .feature-card {
        border-radius: 10px;
        padding: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Feature Card Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.features-section .col-md-4:nth-child(1) .feature-card {
    animation-delay: 0.1s;
}

.features-section .col-md-4:nth-child(2) .feature-card {
    animation-delay: 0.3s;
}

.features-section .col-md-4:nth-child(3) .feature-card {
    animation-delay: 0.5s;
}

/* Enhanced hover effects */
.pulse-animation {
    animation: pulse-green 2s infinite;
}

/* Section Intro and Feature Benefits */
.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-benefit {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-benefit span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feature-benefit span i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.feature-card:hover .feature-benefit span {
    color: var(--text-light);
}

@media (max-width: 576px) {
    .feature-card:active {
        transform: scale(0.98);
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    }
}

/* Responsive styling for the section */
@media (max-width: 992px) {
    .features-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .features-section .col-md-4 {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }
} 