/*
 * Custom Frontend New CSS
 * Consolidated styles from all webapp blade files
 */

/* ===================================================================
   NEW LANDING PAGE STYLES (from new-landing.blade.php)
   =================================================================== */

:root {
    --primary-green: #4CAF50;
    --primary-orange: #ff6600;
    --secondary-orange: #ff8c1a;
    --dark-blue: #1a237e;
    --light-blue: #3949ab;
    --red: #f44336;
    --yellow: #ffc107;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --border-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
.header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.logo-text .app-name-first {
    color: var(--primary-orange);
}

.logo-text .app-name-second {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: top 0.3s ease;
}

.mobile-nav.active {
    top: 70px;
    display: block;
}

.mobile-nav-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.register-btn {
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 35%, #5c6bc0 70%, #7986cb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 102, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    color: white;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -2px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #ffeb3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    }

    100% {
        text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 235, 59, 0.4);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green), #ffeb3b);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: #ffeb3b;
    margin-bottom: 35px;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-features {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #ffeb3b;
    position: relative;
    overflow: hidden;
}

.hero-features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.welcome-text {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6600 0%, #ff0066 50%, #ff6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    animation: textShine 2s ease-in-out infinite alternate;
}

@keyframes textShine {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.2);
    }
}

.features-divider {
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #4CAF50, #ffeb3b, #ff6600);
    background-size: 200% 100%;
    margin: 20px auto;
    border-radius: 2px;
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    border-left-color: #ff6600;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: #4CAF50;
    font-size: 20px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.bonus-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bonus-title {
    color: var(--red);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-percentage {
    font-size: 32px;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 10px;
}

.coming-soon {
    background: var(--yellow);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-link,
.whatsapp-link,
.telegram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-link {
    background: linear-gradient(45deg, var(--primary-green), #66bb6a);
}

.download-link:hover {
    background: linear-gradient(45deg, #388e3c, var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.whatsapp-link {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

.whatsapp-link:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.telegram-link {
    background: linear-gradient(45deg, #0088cc, #006bb3);
}

.telegram-link:hover {
    background: linear-gradient(45deg, #006bb3, #0088cc);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.download-link i,
.whatsapp-link i,
.telegram-link i {
    font-size: 20px;
}

/* Install App Banner */
.install-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    text-align: center;
}

.install-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.install-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
}

.install-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    border-radius: 2px;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.install-step {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.install-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.install-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    border-radius: 15px 15px 0 0;
}

.step-number {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-green));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* Game Rates */
.rates-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #4338ca;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.rates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.rate-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rate-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rate-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rate-icon {
    width: 20px;
    height: 20px;
    background: #4338ca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rate-icon::before {
    content: '➤';
    color: white;
    font-size: 10px;
    transform: rotate(-45deg);
}

.rate-name {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.rate-value {
    font-size: 16px;
    font-weight: 600;
    color: #f97316;
    white-space: nowrap;
}

/* Games Grid */
.games-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.game-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.game-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.game-time {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.result-numbers {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Courier New', monospace;
}

.result-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.status-open {
    background: #e8f5e9;
    color: var(--primary-green);
}

.status-closed {
    background: #ffebee;
    color: var(--red);
}

.play-btn {
    background: var(--light-blue);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
}

.play-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.chart-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.chart-link {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid var(--light-blue);
    border-radius: 5px;
    transition: all 0.3s;
}

.chart-link:hover {
    background: var(--light-blue);
    color: white;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Social Media Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-container {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }

    .hero-title::after {
        width: 80px;
        height: 4px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero-features {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .welcome-text {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .features-divider {
        margin: 15px auto;
        height: 3px;
    }

    .feature-item {
        font-size: 15px;
        margin-bottom: 12px;
        gap: 12px;
        padding: 10px 12px;
    }

    .feature-icon {
        font-size: 18px;
        width: 20px;
    }

    .action-buttons {
        justify-content: center;
        gap: 10px;
    }

    .download-link,
    .whatsapp-link,
    .telegram-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .install-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .install-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .install-step {
        padding: 20px 15px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .step-text {
        font-size: 14px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .chart-links {
        gap: 8px;
    }

    .chart-link {
        font-size: 12px;
        padding: 4px 8px;
    }

    .rates-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .rate-card {
        padding: 16px 20px;
    }

    .rate-left {
        gap: 10px;
    }

    .rate-icon {
        width: 18px;
        height: 18px;
    }

    .rate-icon::before {
        font-size: 9px;
    }

    .rate-name {
        font-size: 15px;
    }

    .rate-value {
        font-size: 15px;
    }
}

/* ===================================================================
   HOLIDAYS PAGE STYLES (from holidays.blade.php)
   =================================================================== */

.holidays-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 15px;
}

.holidays-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.holidays-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.holidays-page .header {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 25px;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.holidays-page .header h1 {
    font-size: 1.8em;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.holidays-page .header p {
    font-size: 0.95em;
    opacity: 0.9;
}

.holidays-page .legend {
    background: white;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.holidays-page .legend h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1em;
}

.holidays-page .legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85em;
}

.holidays-page .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-weight: 500;
}

.holidays-page .legend-item span {
    color: #333;
}

.holidays-page .legend-color {
    width: 18px;
    height: 18px;
    border-radius: 3px;
}

.holidays-page .type-national {
    background: linear-gradient(135deg, #FF9933, #138808);
}

.holidays-page .type-festival {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.holidays-page .type-religious {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.holidays-page .holidays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.holidays-page .holiday-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
}

.holidays-page .holiday-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.holidays-page .holiday-card.past {
    opacity: 0.6;
}

.holidays-page .holiday-card.today {
    border: 2px solid #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    }
}

.holidays-page .holiday-type {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: white;
}

.holidays-page .holiday-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.holidays-page .holiday-date {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 8px;
}

.holidays-page .holiday-date::before {
    content: '📅 ';
}

.holidays-page .holiday-description {
    color: #777;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 0.85em;
}

.holidays-page .days-info {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8em;
    text-align: center;
    font-weight: 600;
}

.holidays-page .days-info.upcoming {
    background: #d4edda;
    color: #155724;
}

.holidays-page .days-info.today {
    background: #fff3cd;
    color: #856404;
    animation: glow 1.5s infinite;
}

@keyframes glow {

    0%,
    100% {
        background: #fff3cd;
    }

    50% {
        background: #ffe69c;
    }
}

.holidays-page .days-info.past {
    background: #f8d7da;
    color: #721c24;
}

.holidays-page .footer {
    text-align: center;
    color: white;
    margin-top: 25px;
    padding: 15px;
    opacity: 0.9;
    font-size: 0.9em;
}

.holidays-page .footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s;
}

.holidays-page .footer a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .holidays-page {
        padding: 10px;
    }

    .holidays-page .header h1 {
        font-size: 1.5em;
    }

    .holidays-page .header p {
        font-size: 0.85em;
    }

    .holidays-page .holidays-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .holidays-page .holiday-card {
        padding: 12px;
    }

    .holidays-page .legend {
        padding: 10px 12px;
    }

    .holidays-page .legend-items {
        gap: 10px;
        font-size: 0.8em;
    }
}

/* ===================================================================
   CHART PAGES COMMON STYLES
   =================================================================== */

.panaChart {
    padding: 10px 0 !important;
}

.panaChartTop {
    padding-bottom: 0px !important;
}

.date {
    font-size: 9px !important;
    padding: 0 !important;
}

.tbb {
    font-weight: bold;
    font-size: 16px !important;
}

.tnn {
    font-size: 14px !important;
}

.red-digit {
    color: red;
}

.panaChart table {
    table-layout: fixed;
    width: 100%;
}

.panaChart th,
.panaChart td {
    font-size: 12px !important;
}

/* Year Filter Buttons */
.year-filter {
    text-align: center;
}

.year-btn {
    margin: 0 5px 10px;
    padding: 8px 16px;
    font-weight: 600;
}

/* ===================================================================
   ADDITIONAL LANDING PAGE SECTIONS
   =================================================================== */

/* About Mahakal Matka Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-card.border-orange {
    border-left: 5px solid #ff6600;
}

.about-card.border-green {
    border-left: 5px solid #4CAF50;
}

.about-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card-title.color-orange {
    color: #ff6600;
}

.about-card-title.color-green {
    color: #4CAF50;
}

.about-card-text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-card-list {
    list-style: none;
    padding: 0;
}

.about-card-list li {
    margin-bottom: 8px;
    color: #333;
}

.about-card-list .checkmark-green {
    color: #4CAF50;
}

.about-card-list .emoji-orange {
    color: #ff6600;
}

.cta-section {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: center;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffeb3b;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.cta-button:hover {
    background: #ff8c1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

/* Features & Benefits Section */
.features-benefits-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
}

.features-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-benefits-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffeb3b;
    margin-bottom: 15px;
}

.features-benefits-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffeb3b;
}

.feature-box-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.join-cta {
    text-align: center;
    margin-top: 50px;
}

.join-cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffeb3b;
}

.join-cta-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.join-cta-button {
    background: linear-gradient(45deg, #ff6600, #ff8c1a);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    text-transform: uppercase;
}

.join-cta-button:hover {
    background: linear-gradient(45deg, #ff8c1a, #ffb84d);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-grid {
    display: grid;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

/* Footer Grid Sections */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-section-title {
    color: #ffeb3b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #ffeb3b;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    margin: 25px 0;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons-container .fab {
    color: white;
    font-size: 24px;
}

.social-follow-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 20px;
    }

    .about-card-title {
        font-size: 18px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .features-benefits-section {
        padding: 40px 0;
    }

    .features-benefits-title {
        font-size: 24px;
    }

    .features-benefits-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 25px 20px;
    }

    .feature-emoji {
        font-size: 40px;
    }

    .feature-box-title {
        font-size: 18px;
    }

    .join-cta-title {
        font-size: 20px;
    }

    .join-cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}