/* --- Modern Light Gaming Theme --- */

:root {
    --accent-red: #ff3b3b;
    --soft-red-bg: #fff5f5;
    --light-gray: #f8f9fa;
    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(255, 59, 59, 0.15);
}

/* 1. Page & Container - Clean Light Look */
body {
    background-color: #ffffff !important;
}

.ast-separate-container {
    background-color: var(--light-gray) !important;
}

/* 2. Professional Headings */
h2.elementor-heading-title, h3.elementor-heading-title {
    color: #222 !important;
    font-weight: 800 !important;
    position: relative;
    padding-bottom: 10px;
}

/* Red line effect under headings */
h2.elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
}

/* 3. Modern "Download" Buttons (Attractive Light Style) */
.elementor-button {
    background: linear-gradient(135deg, #ff3b3b 0%, #d42a2a 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.elementor-button:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(255, 59, 59, 0.4) !important;
    filter: saturate(1.2);
}

/* 4. Elegant Tables */
table {
    background: #ffffff;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

table tr:nth-child(even) {
    background-color: var(--soft-red-bg);
}

table td {
    padding: 18px !important;
    border-color: #f1f1f1 !important;
}

/* 5. Image Styling (Logo & Banners) */
.elementor-widget-image img {
    border-radius: var(--border-radius);
    transition: 0.4s ease;
    border: 3px solid transparent;
}

.elementor-widget-image img:hover {
    border-color: var(--soft-red-bg);
    transform: scale(1.03);
}

/* 6. FAQ & Text Style Improvement */
.elementor-widget-text-editor {
    font-size: 16px;
    color: #444 !important;
    line-height: 1.7;
}

/* 7. Footer - Modern & Simple */
.site-footer {
    background-color: #ffffff !important;
    border-top: 1px solid #eee !important;
    padding: 20px 0;
}

/* 8. Mobile Optimization - Make things look bigger on phones */
@media (max-width: 768px) {
    .elementor-button {
        width: 100% !important;
        text-align: center;
    }
    table {
        font-size: 14px;
    }
}