/* ABC Learning 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: #3b82f6;
}

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

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

.tool-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 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;
}

.abc-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 30px;
    background: white;
    border: 3px solid #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    color: #374151;
    min-width: 140px;
}

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

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

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

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

/* 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: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.learn-header h2 {
    color: #ff6b6b;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.case-toggle {
    display: flex;
    gap: 10px;
}

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

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

.case-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border-color: #ff6b6b;
}

/* Alphabet Grid */
.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

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

.letter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 107, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.letter-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

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

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

.letter-card.learned .letter-emoji {
    filter: brightness(1.2);
}

.letter-text {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

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

.letter-emoji {
    font-size: 36px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.letter-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    z-index: 2;
}

/* Letter Display Card */
.letter-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 #ff6b6b;
}

.display-letter {
    font-size: 120px;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(255, 107, 107, 0.2);
    animation: letterPop 0.5s ease;
}

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

.display-image {
    margin-bottom: 20px;
}

.image-placeholder {
    font-size: 100px;
    animation: imageFloat 2s ease-in-out infinite;
}

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

.display-word {
    font-size: 36px;
    font-weight: 800;
    color: #374151;
    margin-bottom: 30px;
}

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

.play-sound-btn:active {
    transform: scale(0.95);
}

/* 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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.quiz-header h2 {
    color: #ff6b6b;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.quiz-stats {
    display: flex;
    gap: 25px;
}

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

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

.stat-value {
    font-size: 24px;
    color: #ff6b6b;
    font-weight: 900;
}

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

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

.question-image {
    font-size: 80px;
    animation: imageFloat 2s ease-in-out infinite;
}

/* Quiz Options */
.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: #3b82f6;
}

.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 */
.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: #ff6b6b;
    font-weight: 900;
    font-size: 36px;
}

/* Practice Mode */
.practice-header {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.practice-header h2 {
    color: #ff6b6b;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.practice-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.practice-select {
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.practice-select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Practice Area */
.practice-area {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#practiceCanvas {
    border: 3px dashed #ff6b6b;
    border-radius: 15px;
    cursor: crosshair;
    background: #fafafa;
    max-width: 100%;
    height: auto;
}

.practice-letter-guide {
    position: absolute;
    font-size: 300px;
    font-weight: 900;
    color: rgba(255, 107, 107, 0.1);
    pointer-events: none;
    user-select: none;
}

/* 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(255, 107, 107, 0.2);
}

.progress-tracker h3 {
    color: #ff6b6b;
    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, #ff6b6b, #ff8e53);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

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

.learned-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.learned-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 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(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 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;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-2px);
}

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

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

.info-box h4 {
    color: #dc2626;
    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(255, 107, 107, 0.2);
}

.info-item strong {
    color: #dc2626;
    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: #ff6b6b;
}

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

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

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

/* 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%;
    }
    
    .learn-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .alphabet-grid {
    grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
     
    .letter-text {
        font-size: 30px;
        margin: 0;
    }
    .letter-card {
		padding: 10px;
		border-radius: 5px;
		border: 1px solid #e5e7eb;
	}
    .letter-emoji {
        font-size: 26px;
    }
    
    .display-letter {
        font-size: 80px;
    }
    
    .image-placeholder {
        font-size: 70px;
    }
    
    .display-word {
        font-size: 28px;
    }
    
    .quiz-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quiz-stats {
        justify-content: space-around;
    }
    
    .question-text {
        font-size: 24px;
    }
    
    .question-image {
        font-size: 60px;
    }
    
    .quiz-options {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    }
    
    .quiz-option {
        padding: 20px;
        font-size: 36px;
    }
    
    .practice-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    #practiceCanvas {
        width: 100%;
    }
    
    .practice-letter-guide {
        font-size: 200px;
    }
    
    .content-article h2 {
        font-size: 26px;
    }
    
    .content-article h3 {
        font-size: 20px;
    }
}

@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;
    }
    
    .alphabet-grid {
    grid-template-columns: repeat(5, 1fr);
    }
    
    .letter-display {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .result-message {
        font-size: 28px;
    }
    
    .result-score {
        font-size: 22px;
    }
    
    .result-score span {
        font-size: 28px;
    }
}

html {
    scroll-behavior: smooth;
}

@media (max-width:280px){
	.alphabet-grid {
		grid-template-columns: repeat(3, 1fr);
    }	
	.letter-emoji {
        font-size: 26px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (max-width:767px){
	.alphabet-grid {
		grid-template-columns: repeat(3, 1fr);
    }	
	.letter-emoji {
        font-size: 22px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
	.letter-badge {
		font-size: 15px;
	}
	#practiceCanvas {
        width: 100%;
        height: 200px;
    }
}
@media (max-width:1024px) and (min-width:768px) {
	.alphabet-grid {
		grid-template-columns: repeat(4, 1fr);
    }	
	.letter-emoji {
        font-size: 26px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (max-width:1280px) and (min-width:1024px) {
	.alphabet-grid {
		grid-template-columns: repeat(5, 1fr);
    }	
	.letter-emoji {
        font-size: 26px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width:1280px) and (max-width:1400px) {
	.alphabet-grid {
		grid-template-columns: repeat(6, 1fr);
    }	
	.letter-emoji {
        font-size: 26px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}






@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) {
	.visual-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
		perspective: 1000px;
	}
}