/* Number Counting Game - Complete Styling */

.tool-page {
    padding-top: 0;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: #8b5cf6;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #ddd;
}

.breadcrumb .current {
    color: #333;
    font-weight: 600;
}

.tool-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-header::before {
    content: '🔢123';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    animation: rotate 20s linear infinite;
}

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

.tool-header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tool-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.tool-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tool-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tool-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
}

.meta-separator {
    opacity: 0.5;
}

.tool-content {
    padding: 60px 20px;
    background: #f8f9fa;
}

.counting-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mode Selector */
.mode-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mode-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    color: #374151;
    min-width: 130px;
}

.mode-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mode-btn.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-color: #8b5cf6;
}

.mode-icon {
    font-size: 36px;
}

.mode-name {
    font-size: 15px;
}

/* Mode Sections */
.mode-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.mode-section.active {
    display: block;
}

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

/* Learn Mode */
.learn-header {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
}

.learn-header h2 {
    color: #8b5cf6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.range-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.range-btn {
    padding: 10px 20px;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.range-btn:hover {
    background: #e5e7eb;
}

.range-btn.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-color: #8b5cf6;
}

/* Numbers Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.number-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.number-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.number-card.learned {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
}

.number-text {
    font-size: 36px;
    font-weight: 900;
    color: #8b5cf6;
}

.number-card.learned .number-text {
    color: white;
}

.number-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 16px;
}

/* Number Display Card */
.number-display {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    border: 3px solid #8b5cf6;
}

.display-number {
    font-size: 120px;
    font-weight: 900;
    color: #8b5cf6;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(139, 92, 246, 0.2);
    animation: numberPop 0.5s ease;
}

@keyframes numberPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.display-word {
    font-size: 42px;
    font-weight: 800;
    color: #374151;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.display-objects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    min-height: 80px;
}

.display-object {
    font-size: 48px;
    animation: objectPop 0.3s ease;
}

@keyframes objectPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.play-sound-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.play-sound-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Count Objects Mode */
.count-header {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
}

.count-header h2 {
    color: #8b5cf6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

.count-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.stat-value {
    font-size: 32px;
    color: #8b5cf6;
    font-weight: 900;
}

.count-area {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.count-objects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    min-height: 200px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 15px;
}

.count-object {
    font-size: 56px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.3;
}

.count-object.counted {
    opacity: 1;
    transform: scale(1.2);
}

.count-object:hover {
    transform: scale(1.3);
}

.count-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.count-btn {
    padding: 16px 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.count-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.count-btn.reset {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.count-btn.check {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.count-btn.next {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.count-result {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 800;
    min-height: 60px;
}

.count-result.correct {
    background: #d1fae5;
    color: #065f46;
}

.count-result.wrong {
    background: #fee2e2;
    color: #991b1b;
}

/* Quiz Mode */
.quiz-header {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.quiz-header h2 {
    color: #8b5cf6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.quiz-question-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
    border: 3px solid #8b5cf6;
}

.question-text {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 25px;
}

.question-number {
    font-size: 100px;
    font-weight: 900;
    color: #8b5cf6;
    text-shadow: 3px 3px 6px rgba(139, 92, 246, 0.2);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-option {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 48px;
    font-weight: 900;
    color: #374151;
    text-align: center;
}

.quiz-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #8b5cf6;
}

.quiz-option.correct {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
    animation: correctPulse 0.6s ease;
}

.quiz-option.wrong {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-color: #ef4444;
    animation: wrongShake 0.6s ease;
}

@keyframes correctPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes wrongShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.quiz-result {
    display: none;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.quiz-result.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.result-icon {
    font-size: 100px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.result-message {
    font-size: 36px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 15px;
}

.result-score {
    font-size: 28px;
    color: #6b7280;
    margin-bottom: 30px;
}

.result-score span {
    color: #8b5cf6;
    font-weight: 900;
    font-size: 36px;
}

/* Math Mode */
.math-header {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.math-header h2 {
    color: #8b5cf6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.math-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.math-problem-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
    border: 3px solid #8b5cf6;
}

.math-problem {
    font-size: 56px;
    font-weight: 900;
    color: #8b5cf6;
    margin-bottom: 30px;
}

.math-visual {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.math-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.math-object {
    font-size: 42px;
}

.math-operator {
    font-size: 56px;
    font-weight: 900;
    color: #8b5cf6;
    align-self: center;
}

.math-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.math-option {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 42px;
    font-weight: 900;
    color: #374151;
    text-align: center;
}

.math-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #8b5cf6;
}

.math-option.correct {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: #10b981;
}

.math-option.wrong {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-color: #ef4444;
}

.math-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Progress Tracker */
.progress-tracker {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.progress-tracker h3 {
    color: #8b5cf6;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.progress-bar-container {
    background: #e5e7eb;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.progress-text {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    font-weight: 600;
}

.progress-text span {
    color: #8b5cf6;
    font-weight: 900;
    font-size: 24px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-ghost {
    background: white;
    border: 2px solid rgba(0,0,0,0.1);
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.btn-large {
    padding: 18px 45px;
    font-size: 20px;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-left: 5px solid #8b5cf6;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.info-box h4 {
    color: #6b21a8;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

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

.info-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    line-height: 1.7;
    font-size: 14px;
    color: #555;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.info-item strong {
    color: #6b21a8;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

/* Features Box */
.features-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    margin-top: 30px;
}

.features-box h4 {
    color: #92400e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-box li {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    color: #78350f;
    font-size: 14px;
    line-height: 1.6;
    border: 2px solid rgba(245, 158, 11, 0.1);
}

.features-box li strong {
    color: #92400e;
}

/* SEO Content */
.seo-content {
    padding: 80px 20px;
    background: white;
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-article h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.content-article h2:first-child {
    margin-top: 0;
}

.content-article h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.content-article p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.content-article strong {
    color: #333;
    font-weight: 700;
}

/* Related Tools */
.related-tools {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
}

.related-tools h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: #8b5cf6;
}

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

.related-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.related-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #8b5cf6;
}

.related-tool-card .tool-icon {
    font-size: 42px;
}

.related-tool-card .tool-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 15px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-size: 15px;
    font-weight: 600;
    z-index: 10000;
    animation: slideInUp 0.3s ease-out;
}

.notification-toast.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.notification-toast.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tool-header h1 {
        font-size: 32px;
    }
    
    .tool-subtitle {
        font-size: 16px;
    }
    
    .tool-icon-large {
        font-size: 52px;
    }
    
    .mode-selector {
        flex-direction: column;
    }
    
    .mode-btn {
        width: 100%;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 10px;
    }
    
    .number-text {
        font-size: 28px;
    }
    
    .display-number {
        font-size: 80px;
    }
    
    .display-word {
        font-size: 32px;
    }
    
    .display-object {
        font-size: 36px;
    }
    
    .count-stats,
    .math-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .count-controls {
        flex-direction: column;
    }
    
    .count-btn {
        width: 100%;
    }
    
    .quiz-options {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
    
    .quiz-option {
        padding: 20px;
        font-size: 36px;
    }
    
    .math-problem {
        font-size: 42px;
    }
    
    .math-object {
        font-size: 32px;
    }
    
    .content-article h2 {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    .tool-header {
        padding: 40px 20px;
    }
    
    .tool-header h1 {
        font-size: 28px;
    }
    
    .tool-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .meta-separator {
        display: none;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    }
    
    .number-display {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .notification-toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}








@media (max-width:280px){
	
}

@media (max-width:767px){
	.mode-btn {
        width: auto;
    }
	.mode-selector {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
	.category-buttons {
        flex-direction: column;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
	.category-btn {
        width: auto;
    }
	.stats-card {
        flex-direction: column;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
    }
	.stats-card .stat-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0px;
	}
	.stat-icon {
		font-size: 30px;
	}

	.stat-value {
		font-size: 28px;
		font-weight: 900;
		color: #10b981;
	}

	.stat-label {
		font-size: 12px;
		color: #6b7280;
		font-weight: 600;
	}
	.numbers-grid{
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
	}	
}

@media (max-width:1024px) and (min-width:768px) {
		.mode-btn {
        width: auto;
    }
	.mode-selector {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
	.category-buttons {
        flex-direction: column;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
	.category-btn {
        width: auto;
    }
	.stats-card {
        flex-direction: column;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
    }
	.stats-card .stat-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0px;
	}
	.stat-icon {
		font-size: 30px;
	}

	.stat-value {
		font-size: 28px;
		font-weight: 900;
		color: #10b981;
	}

	.stat-label {
		font-size: 12px;
		color: #6b7280;
		font-weight: 600;
	}
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 10px;
    }	
}
@media (max-width:1280px) and (min-width:1024px) {
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 5px;
    }
}
@media (min-width:1280px) and (max-width:1400px) {
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 10px;
    }	
}







	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(15, 1fr);
        gap: 10px;
    }
	.number-card {
		padding: 10px;
		border-radius: 5px;
		border: 1px solid #e5e7eb;
	}
	.number-text {
        font-size: 26px;
    }
	.number-badge {
		position: absolute;
		top: 0px;
		right: 0px;
		font-size: 12px;
	}
	.display-number {
        font-size: 42px;
        margin: 0;
    }
	.display-word {
		font-size: 36px;
		margin-bottom: 20px;
	}
	.display-object {
        font-size: 32px;
    }


@media (max-width:280px){
	
}
@media (max-width:767px){
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }
	.number-card {
		padding: 5px;
		border-radius: 5px;
		border: 1px solid #e5e7eb;
	}
	.number-text {
        font-size: 18px;
    }
	.number-badge {
		position: absolute;
		top: 0px;
		right: 0px;
		font-size: 10px;
	}
	.display-number {
        font-size: 40px;
        margin: 0;
    }
	.display-word {
        font-size: 28px;
        margin: 0;
    }
	.display-object {
        font-size: 26px;
    }
}
@media (max-width:1024px) and (min-width:768px) {
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 7px;
    }
	.number-card {
		padding: 8px;
		border-radius: 5px;
		border: 1px solid #e5e7eb;
	}
	.number-text {
        font-size: 20px;
    }
	.number-badge {
		position: absolute;
		top: 0px;
		right: 0px;
		font-size: 12px;
	}
	.display-number {
        font-size: 42px;
        margin: 0;
    }
	.display-word {
        font-size: 32px;
        margin: 0;
    }
	.display-object {
        font-size: 28px;
    }
}
@media (max-width:1280px) and (min-width:1024px) {
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 7px;
    }
	.number-card {
		padding: 8px;
		border-radius: 5px;
		border: 1px solid #e5e7eb;
	}
	.number-text {
        font-size: 20px;
    }
	.number-badge {
		position: absolute;
		top: 0px;
		right: 0px;
		font-size: 12px;
	}
	.display-number {
        font-size: 42px;
        margin: 0;
    }
	.display-word {
        font-size: 32px;
        margin: 0;
    }
	.display-object {
        font-size: 28px;
    }	
}
@media (min-width:1280px) and (max-width:1400px) {
	.numbers-grid {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 15px;
    }
	.number-card {
		padding: 10px;
		border-radius: 5px;
		border: 1px solid #e5e7eb;
	}
	.number-text {
        font-size: 20px;
    }
	.number-badge {
		position: absolute;
		top: 0px;
		right: 0px;
		font-size: 12px;
	}
	.display-number {
        font-size: 42px;
        margin: 0;
    }
	.display-word {
        font-size: 32px;
        margin: 0;
    }
	.display-object {
        font-size: 28px;
    }
}