.mt-addons-stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.mt-addons-card {
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    text-align: left;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
}
.mt-addons-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}
.mt-addons-card:hover::before {
    opacity: 1;
}
.mt-addons-card h2 {
    font-size: 36px;
    margin: 0;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.mt-addons-number {
    color: white;
    display: block;
}
.mt-addons-title {
    font-size: 18px;
    margin: 8px 0 16px 0;
    color: white;
    position: relative;
    z-index: 1;
    font-weight: 600;
    padding-bottom: 50px;
}
.mt-addons-description {
    font-size: 14px;
    color: #aaa;
    line-height: 1.4;
    min-height: 48px;
    position: relative;
    z-index: 1;
    margin: 0;
    flex: 0 0 70%;
}
.mt-addons-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: #afff4c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1;
    align-self: flex-end;
}
.mt-addons-card:hover .mt-addons-icon {
    transform: scale(1.1);
    background: #8fff2a;
}
.mt-addons-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
/* Add a wrapper for description and icon */
.mt-addons-card-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 15px;
    gap: 15px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .mt-addons-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mt-addons-card {
        padding: 25px 20px;
    }
    
    .mt-addons-card h2 {
        font-size: 32px;
    }
    
    .mt-addons-title {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .mt-addons-stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mt-addons-card {
        padding: 20px 15px;
    }
    
    .mt-addons-card h2 {
        font-size: 28px;
    }
    
    .mt-addons-title {
        font-size: 15px;
        margin: 6px 0 12px 0;
    }
    
    .mt-addons-description {
        font-size: 13px;
        min-height: 40px;
    }
    
    .mt-addons-icon {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .mt-addons-icon img {
        width: 20px;
        height: 20px;
    }

    .mt-addons-description {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .mt-addons-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .mt-addons-stats-container {
        gap: 12px;
    }
    
    .mt-addons-card {
        padding: 18px 12px;
    }
    
    .mt-addons-card h2 {
        font-size: 24px;
    }
    
    .mt-addons-title {
        font-size: 14px;
        margin: 5px 0 10px 0;
    }
    
    .mt-addons-description {
        font-size: 12px;
        min-height: 36px;
    }
    
    .mt-addons-icon {
        width: 36px;
        height: 36px;
        bottom: 12px;
        right: 12px;
    }
    
    .mt-addons-icon img {
        width: 18px;
        height: 18px;
    }
}
/* Animation for numbers */
@keyframes mt-addons-countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mt-addons-card h2 {
    animation: mt-addons-countUp 0.6s ease-out;
}
/* Counter animation specific styles */
.mt-addons-skill-counter-stats-content {
    display: inline-block;
    transition: all 0.3s ease;
}
/* Counter suffix styling */
.mt-addons-counter-suffix {
    color: #ff6b35;
    font-weight: bold;
    margin-left: 2px;
    animation: mt-addons-suffixGlow 0.6s ease-out;
}
@keyframes mt-addons-suffixGlow {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Ensure numbers are properly displayed during animation */
.mt-addons-card h2 .mt-addons-number {
    min-width: 1em;
    display: inline-block;
    text-align: center;
}

/* Loading state */
.mt-addons-stats-container.loading {
    opacity: 0.7;
}

.mt-addons-stats-container.loading .mt-addons-card {
    animation: mt-addons-pulse 1.5s infinite;
}
@keyframes mt-addons-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}