.numerology-grid-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.numerology-grid-container {
    background-color: #f5f5f5;
    padding: 20px;
    max-width: 650px;
    margin: 40px auto;
}

/* Enter text above tool */
.numerology-grid-container .enter-text {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0;
    animation: numerology-fadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

/* Original Tool Design */
.numerology-grid-container .vedic-grid-tool {
    background-color: #f6eee3;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: numerology-slideUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.numerology-grid-container .input-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.numerology-grid-container .input-section input {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    width: 200px;
    transition: all 0.3s ease;
}

.numerology-grid-container .input-section input:focus {
    border-color: #e5782a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 120, 42, 0.2);
}

.numerology-grid-container .input-section button {
    background-color: #e5782a;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.numerology-grid-container .input-section button:hover {
    background-color: #d45a1a;
    transform: translateY(-2px);
}

.numerology-grid-container .input-section .clear-btn {
    background-color: #777;
}

.numerology-grid-container .input-section .clear-btn:hover {
    background-color: #666;
}

.numerology-grid-container .grid-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.numerology-grid-container .vedic-grid {
    border-collapse: collapse;
    border: 2px solid #e5782a;
}

.numerology-grid-container .vedic-grid td {
    width: 100px;
    height: 100px;
    border: 2px solid #e5782a;
    text-align: center;
    vertical-align: middle;
    background-color: #fff;
    font-weight: bold;
    font-size: 24px;
    color: #000;
}

.numerology-grid-container .analysis-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    animation: numerology-fadeIn 0.8s ease forwards;
}

.numerology-grid-container .analysis-box h3 {
    color: #e5782a;
    margin-bottom: 10px;
}

/* Consultation Section */
.numerology-grid-container .consultation-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
    border: 2px solid #e5782a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: numerology-slideUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.numerology-grid-container .consultation-section h3 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.numerology-grid-container .consultation-section p {
    color: #555;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* WhatsApp Button */
.numerology-grid-container .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 25px auto 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.numerology-grid-container .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.numerology-grid-container .whatsapp-icon {
    font-size: 1.3rem;
}

/* Timer Display - Centered */
.numerology-grid-container .timer-container {
    text-align: center;
    margin: 15px auto;
}

.numerology-grid-container .timer-note {
    display: inline-block;
    color: #D32F2F;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 20px;
    background-color: #FFEBEE;
    border-radius: 8px;
    border: 1px solid #FFCDD2;
}

.numerology-grid-container .hidden {
    display: none;
}

/* Suspense Message */
.numerology-grid-container .suspense-message {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Animations */
@keyframes numerology-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes numerology-slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .numerology-grid-container .vedic-grid td {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }
    
    .numerology-grid-container .input-section input {
        width: 100%;
    }
    
    .numerology-grid-container .whatsapp-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .numerology-grid-container {
        margin: 20px auto;
        padding: 10px;
    }
}