/* --- Professional About Page Enhancements --- */

:root {
    --brand-red: #ff3b3b;
    --soft-bg: #fdfdfd;
    --glass-white: rgba(255, 255, 255, 0.9);
}

/* 1. Page Section Styling (For a boxed premium look) */
.elementor-12 .elementor-element.e-con {
    background: #ffffff !important;
    border-radius: 15px;
    margin-bottom: 25px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

/* 2. Headline Animation */
h2.elementor-heading-title {
    color: #1a1a1a !important;
    border-left: 5px solid var(--brand-red);
    padding-left: 15px !important;
    font-size: 28px !important;
}

/* 3. All Download Buttons - Pulse Effect */
.elementor-button {
    background: linear-gradient(135deg, #ff3b3b 0%, #b30000 100%) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border-radius: 5px !important;
    width: 100%; /* Mobile friendly */
    max-width: 350px;
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

/* 4. Table Styling - About Info */
.elementor-widget-text-editor table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}

.elementor-widget-text-editor table td {
    background: #fff;
    padding: 15px !important;
    border-bottom: 1px solid #f1f1f1 !important;
}

.elementor-widget-text-editor table tr td:first-child {
    font-weight: bold;
    color: var(--brand-red);
    width: 30%;
}

/* 5. Warning / 18+ Notice Box */
.elementor-element[data-id="08e965a"] {
    background: #fff5f5 !important;
    border: 2px dashed #ff4d4d !important;
    border-radius: 12px;
}

.elementor-element[data-id="08e965a"] h4 {
    color: #cc0000 !important;
    text-transform: uppercase;
}

/* 6. List Items Styling */
.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.entry-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #fafafa;
}

.entry-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* 7. Footer Glow */
.site-footer {
    border-top: 3px solid var(--brand-red);
    background: #f9f9f9 !important;
}