/* Shape Learning - 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: #14b8a6;
}

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

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

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

.tool-header::before {
    content: '⭐🔷🔺';
    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;
}

.shape-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, #14b8a6 0%, #0d9488 100%);
    color: white;
    border-color: #14b8a6;
}

.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: #14b8a6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.learn-header p {
    color: #6b7280;
    font-size: 16px;
}

/* Shapes Grid */
.shapes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

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

.shape-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.3);
    border-color: #14b8a6;
}

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

.shape-icon {
    font-size: 72px;
    margin-bottom: 15px;
    display: block;
}

.shape-card svg {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.shape-label {
    font-size: 18px;
    font-weight: 800;
    color: #1f2937;
}

.shape-card.learned .shape-label {
    color: white;
}

.shape-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

/* Shape Display Card */
.shape-display-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;
    border: 3px solid #14b8a6;
}

.shape-display-card h3 {
    font-size: 42px;
    font-weight: 900;
    color: #14b8a6;
    margin-bottom: 30px;
}

.shape-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-visual svg {
    width: 100%;
    height: 100%;
    animation: shapeFloat 3s ease-in-out infinite;
}

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

.shape-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.info-item {
    background: #f9fafb;
    padding: 15px 25px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.info-item strong {
    color: #374151;
    margin-right: 8px;
}

.info-item span {
    color: #14b8a6;
    font-weight: 900;
    font-size: 20px;
}

.shape-description {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.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);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.real-world-examples {
    margin-top: 40px;
    background: #fef3c7;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.real-world-examples h4 {
    color: #92400e;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.examples-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.example-item {
    background: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 16px;
    color: #78350f;
    font-weight: 600;
    border: 2px solid #fbbf24;
}

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

.find-header h2 {
    color: #14b8a6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.find-header p {
    color: #6b7280;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.find-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: #14b8a6;
    font-weight: 900;
}

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

.target-shape-card {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.target-shape-card h3 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.target-shape {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-shape svg {
    width: 100%;
    height: 100%;
}

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

.object-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.object-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.object-card.wrong {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    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); }
}

.object-card svg {
    width: 80px;
    height: 80px;
}

.btn-next-challenge {
    padding: 16px 35px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.btn-next-challenge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

/* 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: #14b8a6;
    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 #14b8a6;
}

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

.question-shape {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-shape svg {
    width: 100%;
    height: 100%;
}

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

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

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

.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;
}

.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: #14b8a6;
    font-weight: 900;
    font-size: 36px;
}

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

.trace-header h2 {
    color: #14b8a6;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.trace-header p {
    color: #6b7280;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.trace-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.shape-select-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.shape-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.current-trace-shape {
    font-size: 24px;
    font-weight: 900;
    color: #14b8a6;
}

.trace-canvas-area {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

#traceCanvas {
    border: 3px solid #e5e7eb;
    border-radius: 12px;
    cursor: crosshair;
    max-width: 100%;
    height: auto;
    touch-action: none;
    background: white;
}

.trace-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.action-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* 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(20, 184, 166, 0.2);
}

.progress-tracker h3 {
    color: #14b8a6;
    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, #14b8a6, #0d9488);
    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: #14b8a6;
    font-weight: 900;
    font-size: 24px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 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(20, 184, 166, 0.3);
}

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

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

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

.info-box h4 {
    color: #134e4a;
    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-grid .info-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    line-height: 1.7;
    font-size: 14px;
    color: #555;
    border: 2px solid rgba(20, 184, 166, 0.2);
}

.info-grid .info-item strong {
    color: #134e4a;
    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: #14b8a6;
}

.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: #14b8a6;
}

.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, #14b8a6 0%, #0d9488 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;
}

@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%;
    }
    
    .shapes-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .shape-display-card {
        padding: 30px 20px;
    }
    
    .find-stats,
    .quiz-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .objects-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .quiz-options {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }
    
    .trace-controls {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .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;
    }
    
    .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;
	}
}

@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;
	}
}
@media (max-width:1280px) and (min-width:1024px) {
	
}
@media (min-width:1280px) and (max-width:1400px) {

}














@media (max-width:280px){
	
}
@media (max-width:767px){
	.shape-card {
		padding: 10px;
		border-radius: 5px;
	}
	.shapes-grid {
		gap: 10px;
        grid-template-columns: repeat(3, 1fr);
    }
	.shape-card svg {
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}
	.shape-visual {
		width: 100px;
		height: 100px;
		margin: 0 auto 10px;
	}
	.shape-info {
		display: flex;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 25px;
		flex-direction: row;
		flex-wrap: nowrap;
	}
}
@media (max-width:1024px) and (min-width:768px) {
	.shape-card {
		padding: 10px;
		border-radius: 5px;
	}
	.shapes-grid {
		gap: 10px;
        grid-template-columns: repeat(6, 1fr);
    }
	.shape-card svg {
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}
	.shape-visual {
		width: 100px;
		height: 100px;
		margin: 0 auto 10px;
	}
	.shape-info {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-bottom: 25px;
		flex-direction: row;
		flex-wrap: nowrap;
	}	
}
@media (max-width:1280px) and (min-width:1024px) {
	.shape-card {
		padding: 15px;
		border-radius: 5px;
	}
	.shapes-grid {
		gap: 15px;
        grid-template-columns: repeat(6, 1fr);
    }
	.shape-card svg {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}
	.shape-visual {
		width: 120px;
		height: 120px;
		margin: 0 auto 10px;
	}
	.shape-info {
		display: flex;
		justify-content: center;
		gap: 15px;
		margin-bottom: 25px;
		flex-direction: row;
		flex-wrap: nowrap;
	}	
}
@media (min-width:1280px) and (max-width:1400px) {
	.shape-card {
		padding: 15px;
		border-radius: 5px;
	}
	.shapes-grid {
		gap: 15px;
        grid-template-columns: repeat(7, 1fr);
    }
	.shape-card svg {
		width: 70px;
		height: 70px;
		margin-bottom: 15px;
	}
	.shape-visual {
		width: 120px;
		height: 120px;
		margin: 0 auto 10px;
	}
	.shape-info {
		display: flex;
		justify-content: center;
		gap: 15px;
		margin-bottom: 25px;
		flex-direction: row;
		flex-wrap: nowrap;
	}	
}