.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-305 .elementor-element.elementor-element-20b637c{width:var( --container-widget-width, 9.114% );max-width:9.114%;--container-widget-width:9.114%;--container-widget-flex-grow:0;}.elementor-305 .elementor-element.elementor-element-20b637c.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-305 .elementor-element.elementor-element-20b637c{width:var( --container-widget-width, 101.8px );max-width:101.8px;--container-widget-width:101.8px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-475e41f *//* --- Teer Interactive Game Styles (Animated) --- */
.teer-interactive-game {
    background: #ffffff;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.game-header h2 {
    color: #0056b3;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.game-header p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Button with Continuous Pulse Animation */
.teer-game-btn {
    background-color: #d93025;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    animation: pulseGlow 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.teer-game-btn:hover {
    background-color: #b3261d;
    animation: none; /* Stops pulsing when hovering */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(217, 48, 37, 0.3);
}

/* The Array of Numbers Display */
.numbers-display {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* Individual Number Design */
.teer-num-ball {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3, #003d82);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.4);
    opacity: 1; /* Default visibility for returning users */
}

/* Triggered Class for 3D Flip */
.animate-flip {
    animation: flipIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Status Message */
.game-status-msg {
    margin-top: 25px;
    background: #f1f8ff;
    color: #004085;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #cce5ff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Triggered Class for Fade Slide */
.fade-slide-up {
    animation: slideUpFade 0.8s ease forwards;
}

/* --- Keyframe Animations --- */

/* 1. Button Glowing Pulse */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(217, 48, 37, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(217, 48, 37, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 48, 37, 0); }
}

/* 2. 3D Flip Appearance */
@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(-90deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg) scale(1);
    }
}

/* 3. Smooth slide up for the lock message */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6417360 *//* --- Game SEO Content & Disclaimer Styles --- */
.teer-game-seo-content {
    max-width: 600px; /* Matches the game's width */
    margin: 2rem auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #444;
    line-height: 1.6;
    padding: 0 10px;
}

.teer-game-seo-content h3 {
    color: #0056b3;
    font-size: 1.3rem;
    margin-bottom: 12px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 8px;
}

.teer-game-seo-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Specific styling for the disclaimer box */
.teer-game-disclaimer {
    background-color: #fffaf9;
    border-left: 4px solid #d93025;
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 0 6px 6px 0;
}

.teer-game-disclaimer h4 {
    color: #c5221f;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.teer-game-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}/* End custom CSS */