﻿:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #ffffff;
    /* White accent for strong contrast */
    --accent-hover: #e0e0e0;
    --border-color: #333333;
    --success-color: #00ff9d;
    /* Green for positive data */
    --danger-color: #ff4d4d;
    /* Red for negative data */
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.section-title {}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.auth-buttons a {
    margin-left: 20px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Tools Section */
.tools {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.tool-card .btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.tool-card .btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

/* Live Preview Section */
.live-preview {
    padding: 80px 0;
    background-color: #0f0f0f;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.preview-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.preview-header {
    padding: 15px 20px;
    background-color: #1a1a1a;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}

.blink {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}

.data-table td {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background-color: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.plan-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    z-index: 10;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.plan-features {
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--accent-color);
}

/* Broker Access Section */
.broker-access {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 250px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

.step-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.broker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.broker-card {
    background-color: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;
}

.broker-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.broker-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
}

.broker-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.broker-card .btn {
    width: 100%;
}

/* News Page Styles */
.news-hero {
    padding: 120px 0 60px;
    background: linear-gradient(to bottom, #0a0a0a, #141414);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.news-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.news-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.news-feed {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.control-group label {
    margin-right: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

#impact-filter {
    background-color: #0a0a0a;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    overflow: hidden;
}

/* Day Tabs */
.day-tabs {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent stacking */
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on mobile */
    scrollbar-width: none;
    /* Firefox */
}

.day-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.day-tab {
    background-color: transparent;
    border: 1px solid transparent;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
    /* Prevent shrinking */
    position: relative;
}

.day-tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.day-tab.active {
    background-color: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.day-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    /* Align with container border */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

.day-tab .day-name {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.day-tab .day-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
}

.news-table th {
    background-color: #1a1a1a;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.news-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tr:hover {
    background-color: #1f1f1f;
}

.date-cell {
    display: flex;
    flex-direction: column;
}

.event-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.event-time {
    font-weight: 600;
    color: var(--accent-color);
}

.country-tag {
    background-color: #2a2a2a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-title {
    font-weight: 500;
}

.impact-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.impact-high {
    background-color: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.impact-medium {
    background-color: rgba(255, 166, 0, 0.2);
    color: #ffa600;
    border: 1px solid rgba(255, 166, 0, 0.3);
}

.impact-low {
    background-color: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.impact-holiday {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

border-radius: 8px;
cursor: pointer;
white-space: nowrap;
color: var(--text-secondary);
transition: all 0.3s ease;
text-align: center;
min-width: 120px;
flex-shrink: 0;
/* Prevent shrinking */
position: relative;
}

.day-tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.day-tab.active {
    background-color: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.day-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    /* Align with container border */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

.day-tab .day-name {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.day-tab .day-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
}

.news-table th {
    background-color: #1a1a1a;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.news-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tr:hover {
    background-color: #1f1f1f;
}

.date-cell {
    display: flex;
    flex-direction: column;
}

.event-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.event-time {
    font-weight: 600;
    color: var(--accent-color);
}

.country-tag {
    background-color: #2a2a2a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-title {
    font-weight: 500;
}

.impact-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.impact-high {
    background-color: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.impact-medium {
    background-color: rgba(255, 166, 0, 0.2);
    color: #ffa600;
    border: 1px solid rgba(255, 166, 0, 0.3);
}

.impact-low {
    background-color: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.impact-holiday {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

gap: 15px;
margin-bottom: 30px;
overflow-x: auto;
padding-bottom: 15px;
border-bottom: 1px solid var(--border-color);
-webkit-overflow-scrolling: touch;
/* Smooth scroll on mobile */
scrollbar-width: none;
/* Firefox */
}

.day-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.day-tab {
    background-color: transparent;
    border: 1px solid transparent;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
    /* Prevent shrinking */
    position: relative;
}

.day-tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.day-tab.active {
    background-color: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.day-tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    /* Align with container border */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px 3px 0 0;
}

.day-tab .day-name {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.day-tab .day-date {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.table-responsive {
    overflow-x: auto;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
}

.news-table th {
    background-color: #1a1a1a;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
}

.news-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tr:hover {
    background-color: #1f1f1f;
}

.date-cell {
    display: flex;
    flex-direction: column;
}

.event-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.event-time {
    font-weight: 600;
    color: var(--accent-color);
}

.country-tag {
    background-color: #2a2a2a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-title {
    font-weight: 500;
}

.impact-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.impact-high {
    background-color: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.impact-medium {
    background-color: rgba(255, 166, 0, 0.2);
    color: #ffa600;
    border: 1px solid rgba(255, 166, 0, 0.3);
}

.impact-low {
    background-color: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.impact-holiday {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simple hide for now, would need JS toggle for full menu */
    }

    .hero-buttons {
        flex-direction: column;
    }

    .plan-card.featured {
        transform: scale(1);
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.5rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.discord {
    background-color: #5865F2;
    color: white;
}

.social-icon.tiktok {
    background-color: white;
    color: black;
}

.social-icon.tiktok:hover {
    background-color: #e6e6e6;
}

.social-icon.discord:hover {
    background-color: #4752c4;
}

/* --- Responsive Utilities --- */

/* Grid Utilities */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* General Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Typography */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
        /* Handled by Bootstrap toggler usually, but ensuring cleanup */
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Grids */
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-grid {
        display: flex;
        flex-direction: column;
        gap: 40px !important;
        /* Override inline gap if present */
    }

    .explanation-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    min-width: 80px;
    text-align: center;
}

.impact-high {
    background-color: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.impact-medium {
    background-color: rgba(255, 166, 0, 0.2);
    color: #ffa600;
    border: 1px solid rgba(255, 166, 0, 0.3);
}

.impact-low {
    background-color: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.impact-holiday {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simple hide for now, would need JS toggle for full menu */
    }

    .hero-buttons {
        flex-direction: column;
    }

    .plan-card.featured {
        transform: scale(1);
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.5rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.discord {
    background-color: #5865F2;
    color: white;
}

.social-icon.tiktok {
    background-color: white;
    color: black;
}

.social-icon.tiktok:hover {
    background-color: #e6e6e6;
}

.social-icon.discord:hover {
    background-color: #4752c4;
}

/* --- Responsive Utilities --- */

/* Grid Utilities */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* General Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Typography */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
        /* Handled by Bootstrap toggler usually, but ensuring cleanup */
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Grids */
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-grid {
        display: flex;
        flex-direction: column;
        gap: 40px !important;
        /* Override inline gap if present */
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    min-width: 80px;
    text-align: center;
}

.impact-high {
    background-color: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.impact-medium {
    background-color: rgba(255, 166, 0, 0.2);
    color: #ffa600;
    border: 1px solid rgba(255, 166, 0, 0.3);
}

.impact-low {
    background-color: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.impact-holiday {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: #050505;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.5rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.discord {
    background-color: #5865F2;
    color: white;
}

.social-icon.tiktok {
    background-color: white;
    color: black;
}

.social-icon.tiktok:hover {
    background-color: #e6e6e6;
}

.social-icon.discord:hover {
    background-color: #4752c4;
}

/* --- Responsive Utilities --- */

/* Grid Utilities */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* General Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    /* Typography */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
        /* Handled by Bootstrap toggler usually, but ensuring cleanup */
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Grids */
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-grid {
        display: flex;
        flex-direction: column;
        gap: 40px !important;
        /* Override inline gap if present */
    }

    .explanation-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }

    /* News Page */
    .calendar-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .control-group {
        width: 100%;
    }

    #impact-filter {
        width: 100%;
    }

    .last-updated {
        width: 100%;
        text-align: right;
        font-size: 0.8rem;
    }

    /* Mobile Table Card View */
    .news-table thead {
        display: none;
    }

    .news-table,
    .news-table tbody,
    .news-table tr,
    .news-table td {
        display: block;
        width: 100%;
    }

    .news-table tr {
        margin-bottom: 20px;
        background-color: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 15px;
    }

    .news-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: right;
    }

    .news-table td:last-child {
        border-bottom: none;
    }

    .news-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        font-size: 0.8rem;
        margin-right: 15px;
        text-align: left;
    }

    /* Special styling for Event Title in card view */
    .news-table td.event-title {
        display: block;
        text-align: left;
        font-size: 1.1rem;
        color: var(--accent-color);
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 5px;
    }

    .news-table td.event-title::before {
        display: none;
    }

    /* Date cell adjustment */
    .news-table td.date-cell {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .news-table td.date-cell .event-date {
        display: inline-block;
        margin-right: 10px;
    }

    /* General Padding */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* Mobile Navigation Fix */
@media (max-width: 991px) {

    .navbar-collapse,
    .navbar-collapse.show {
        background-color: #0a0a0a !important;
        background-color: var(--bg-color) !important;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        position: relative;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-secondary) !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--text-primary) !important;
        padding-left: 10px;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}