/* GTA 6 Website CSS - AdSense Optimized */
:root {
    --primary-color: #ff4400;
    --secondary-color: #ff4400;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #1a1a1a;
    --text-color: #000000;
    --text-light: #aaaaaa;
    --accent-color: #ffd700;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --border-color: #0a0a0a;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    min-height: 100vh;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--accent-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header Styles */
.main-header {
    background: var(--darker-bg);
    border-bottom: 3px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-top {
    background: linear-gradient(90deg, #ff4400, #ff6b00);
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.9rem;
}

.breaking-news {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.breaking-label {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
}

.breaking-text {
    font-weight: 500;
}

.social-top a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
}

.social-top a:hover {
    color: var(--dark-bg);
}

.header-main {
    padding: 15px 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 2.2rem;
}

.logo h1 a {
    color: white;
    text-decoration: none;
}

.logo-highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 68, 0, 0.5);
}

.tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.header-ad {
    flex: 1;
    margin: 0 30px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.search-toggle, .menu-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-toggle:hover, .menu-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: black;
    background: rgba(255, 68, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker-bg);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 68, 0, 0.1);
    color: white;
    padding-left: 25px;
}

.search-bar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: var(--darker-bg);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-top: none;
    display: none;
}

.search-bar.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-bar form {
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    color: black;
    border-radius: 4px;
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-bar button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background: #ff5500;
}

.close-search {
    background: transparent;
    color: var(--text-light);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 15px;
}

.close-search:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    margin: 30px 0;
}

.hero-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-slider:hover .hero-image img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #ff5500;
    transform: translateY(-2px);
    color: white;
}

.featured-news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.featured-item {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.featured-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--dark-bg);
    color: var(--accent-color);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.featured-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.featured-item h3 a {
    color: white;
}

.featured-item h3 a:hover {
    color: var(--primary-color);
}

.featured-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.featured-time {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Section Styles */
.section {
    margin: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: bold;
}

.view-all:hover {
    gap: 10px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 15px;
}

.news-content h3 a {
    color: white;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 68, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.feature-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-status.confirmed {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.feature-status.rumor {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #f39c12;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding: 20px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-date {
    position: absolute;
    top: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -70px;
}

.timeline-content {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timeline-item.current .timeline-content {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 68, 0, 0.3);
}

.timeline-item.future .timeline-content {
    opacity: 0.7;
}

.timeline-content h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.comparison-table tr:hover {
    background: rgba(255, 68, 0, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 68, 0, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

/* Sidebar */
.sidebar-right {
    width: 350px;
}

.sidebar-widget {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: black;
    font-size: 1.3rem;
}

/* Newsletter */
.newsletter-form {
    margin: 20px 0;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    color: white;
    border-radius: 4px;
    margin-bottom: 10px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5500;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.countdown-box {
    background: var(--dark-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    border: 2px solid var(--primary-color);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.countdown-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Popular Articles */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-rank {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.popular-content h4 {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.popular-content h4 a {
    color: black;
}

.popular-content h4 a:hover {
    color: var(--primary-color);
}

.popular-views {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Comments Widget */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author span {
    font-weight: bold;
    color: white;
}

.comment-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.comment-time {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Social Widget */
.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.discord {
    background: #5865f2;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    border-top: 3px solid var(--primary-color);
    margin-top: 60px;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-middle {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin-bottom: 10px;
}

.footer-bottom-content p:last-child {
    margin-bottom: 0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #ff5500;
    transform: translateY(-3px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    padding: 20px;
    border-top: 2px solid var(--primary-color);
    z-index: 1001;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: #ff5500;
}

.btn-settings {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-settings:hover {
    background: var(--light-bg);
    color: white;
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-reject:hover {
    background: var(--light-bg);
    color: white;
}

/* Ad Containers */
.ad-container {
    margin: 20px 0;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-header {
    min-height: 100px;
}

.ad-incontent {
    margin: 40px 0;
}

.ad-sidebar {
    min-height: 250px;
}

.ad-footer {
    min-height: 100px;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.content-main {
    flex: 1;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.bg-dark {
    background: var(--dark-bg);
}

.bg-light {
    background: var(--light-bg);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.border {
    border: 1px solid var(--border-color);
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
