/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Custom Variables - Dark Theme (Default) */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-hover: #262626;
    --border-color: #262626;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-overlay: rgba(0, 0, 0, 0.5);

    /* Game Calendar Specific Variables */
    --calendar-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --calendar-grid: rgba(99, 102, 241, 0.1);
    --game-card-bg: rgba(26, 26, 26, 0.8);
    --game-card-hover: rgba(99, 102, 241, 0.1);
    --tag-purple: #8b5cf6;
    --tag-hot: #ef4444;
    --tag-vr: #10b981;
    --tag-early: #f59e0b;
}

/* Light Theme Variables */
[data-theme="light"] {
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --bg-hover: #e5e5e5;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-overlay: rgba(255, 255, 255, 0.5);
    --calendar-bg: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    --game-card-bg: rgba(255, 255, 255, 0.9);
    --game-card-hover: rgba(99, 102, 241, 0.05);
}

/* Light Theme - Force Text Colors */
[data-theme="light"] body,
[data-theme="light"] p,
[data-theme="light"] span,
[data-theme="light"] div,
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6,
[data-theme="light"] a:not(.btn):not(.nav-link):not(.dropdown-item),
[data-theme="light"] label,
[data-theme="light"] .form-control,
[data-theme="light"] .form-label,
[data-theme="light"] .text-primary,
[data-theme="light"] .text-secondary {
    color: var(--text-primary) !important;
}

[data-theme="light"] .text-muted,
[data-theme="light"] small,
[data-theme="light"] .small {
    color: var(--text-muted) !important;
}

[data-theme="light"] .text-secondary,
[data-theme="light"] p.text-secondary {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .nav-link,
[data-theme="light"] .dropdown-item {
    color: var(--text-primary) !important;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .dropdown-item:hover {
    color: var(--primary-color) !important;
}




[data-theme="light"] .card-title {
    color: var(--text-primary) !important;
}

[data-theme="light"] .card-text {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .list-group-item {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .list-group-item a {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .list-group-item a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .news-card:hover,
[data-theme="light"] .blog-card:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
}

[data-theme="light"] .sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .sidebar h3 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .sidebar h4 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .sidebar h5 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .sidebar a {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .sidebar a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .widget h3 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .widget h4 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .widget a {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .widget a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .contact-form-section,
[data-theme="light"] .contact-info,
[data-theme="light"] .social-media-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .form-control:focus {
    background: var(--bg-hover);
    border-color: var(--primary-color);
}

[data-theme="light"] .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

[data-theme="light"] .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Additional Light Theme Styles */
[data-theme="light"] .filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

[data-theme="light"] .news-category,
[data-theme="light"] .blog-category {
    background: var(--primary-color);
    color: white;
}

[data-theme="light"] .news-meta,
[data-theme="light"] .blog-meta {
    color: var(--text-muted);
}

[data-theme="light"] .news-meta span,
[data-theme="light"] .blog-meta span {
    color: var(--text-muted);
}

[data-theme="light"] .news-meta .author,
[data-theme="light"] .blog-meta .author {
    display: none !important;
}

[data-theme="light"] .trending-item,
[data-theme="light"] .popular-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .trending-item:hover,
[data-theme="light"] .popular-item:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

[data-theme="light"] .ad-placeholder {
    background: var(--bg-card) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .ad-placeholder .ad-game-image {
    background: transparent !important;
}

[data-theme="light"] .ad-placeholder i {
    color: var(--primary-color) !important;
}

[data-theme="light"] .ad-placeholder p,
[data-theme="light"] .ad-placeholder .ad-text {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .ad-placeholder small {
    color: var(--text-muted) !important;
}

[data-theme="light"] .newsletter-form {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .newsletter-form .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .newsletter-form .form-control:focus {
    background: var(--bg-hover);
    border-color: var(--primary-color);
}

[data-theme="light"] .newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

[data-theme="light"] .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .footer h5 {
    color: var(--text-primary);
}

[data-theme="light"] .footer a {
    color: var(--text-secondary);
}

[data-theme="light"] .footer a:hover {
    color: var(--primary-color);
}

[data-theme="light"] .footer p {
    color: var(--text-muted);
}

/* Force Light Theme Backgrounds */
[data-theme="light"] * {
    background-color: inherit !important;
}

[data-theme="light"] .header,
[data-theme="light"] .navbar,
[data-theme="light"] .navbar-nav,
[data-theme="light"] .navbar-collapse {
    background-color: var(--bg-secondary) !important;
}

[data-theme="light"] .main-content,
[data-theme="light"] .container-fluid,
[data-theme="light"] .content-wrapper {
    background-color: var(--bg-primary) !important;
}

[data-theme="light"] .row,
[data-theme="light"] .col-lg-8,
[data-theme="light"] .col-lg-4,
[data-theme="light"] .col-md-9,
[data-theme="light"] .col-md-3 {
    background-color: transparent !important;
}

/* Header Styles */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 0.75rem 0 !important;
    background-color: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color);
    min-height: auto !important;
}

.navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.navbar-nav {
    align-items: center;
    flex-grow: 1;
}

.navbar .d-flex {
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    flex-wrap: nowrap;
}

.navbar .d-flex .btn-theme-toggle {
    align-self: center;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box {
    display: flex;
    align-items: center;
    align-self: center;
    margin: 0;
}

.navbar .d-flex {
    align-items: center;
}

@media (max-width: 991px) {
    .navbar-collapse {
        flex-direction: column;
        align-items: stretch !important;
        padding: 1rem 0;
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .navbar .d-flex {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

.header {
    padding: 0 !important;
}

.navbar-brand {
    font-size: 1.3rem !important;
    padding: 0.25rem 0 !important;
}

.brand-logo {
    height: 50px !important;
    width: auto;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
}

/* Theme Toggle Button */
.btn-theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
    vertical-align: middle;
    line-height: 1;
    align-self: center;
}

.btn-theme-toggle:hover {
    background: var(--bg-hover);
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.btn-theme-toggle i {
    font-size: 1.1rem;
}

.navbar .d-flex {
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.navbar .search-form {
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0;
}

.search-box .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    width: 250px;
    height: 40px;
    transition: all 0.3s ease;
}

.search-box .form-control:focus {
    background: var(--bg-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.search-box .form-control::placeholder {
    color: var(--text-muted);
}

.btn-search {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-search:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
    padding: 1rem 0;
    background-color: var(--bg-primary);
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1600px;
    }
}

/* Sidebar Styles - Modern & Elite */
.sidebar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    word-wrap: break-word;
    max-width: 100%;
}

.sidebar-right {
    padding: 2.5rem !important;
}

.sidebar-right .sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-right .sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-left,
.sidebar-right {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    align-self: flex-start;
    z-index: 10;
}

.content-wrapper {
    align-self: flex-start;
}

.main-content .container-fluid > .row {
    display: flex;
    align-items: flex-start;
}

.main-content .container-fluid > .row > .col-lg-2,
.main-content .container-fluid > .row > .col-lg-3,
.main-content .container-fluid > .row > .col-lg-7,
.main-content .container-fluid > .row > .col-lg-8,
.main-content .container-fluid > .row > .col-md-3,
.main-content .container-fluid > .row > .col-md-9 {
    display: flex;
    flex-direction: column;
}

.sidebar-right {
    display: flex !important;
    visibility: visible !important;
    flex-direction: column;
    gap: 0;
}

.sidebar-right .sidebar-widget {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.sidebar-right .sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar h4,
.sidebar .widget-title,
.sidebar h4,
.sidebar h5,
.sidebar h3 {
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    padding-bottom: 1rem;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.sidebar-right .widget-title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
}

.sidebar .widget-title::after,
.sidebar h4::after,
.sidebar h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 1px;
}



.sidebar .list-group-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 0;
}

.sidebar .list-group-item:last-child {
    border-bottom: none;
}

.sidebar .list-group-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    width: 100%;
}

.sidebar .list-group-item a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Sidebar content responsive */
.sidebar p,
.sidebar span,
.sidebar div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.sidebar img {
    max-width: 100%;
    height: auto;
}

.sidebar .trending-hashtag {
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.status-section,
.progress-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background-color: var(--success-color);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.progress-professional {
    width: 100%;
    height: 6px;
    background-color: var(--bg-hover);
    border-radius: 3px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.ad-space {
    margin-bottom: 2.5rem;
}

.sidebar-right .ad-space {
    margin-bottom: 2.5rem;
}

.ad-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sidebar-right .ad-placeholder {
    padding: 3.5rem 2.5rem;
    min-height: 350px;
}

.ad-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-placeholder:hover::before {
    opacity: 1;
}

.ad-placeholder:hover {
    border-color: rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
    position: relative;
}

.ad-label {
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.ad-placeholder:hover .ad-label {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.ad-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.ad-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.ad-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.ad-placeholder small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.ad-game-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
    padding: 0;
    border: none;
}

.ad-placeholder .ad-game-image {
    min-height: 250px;
    background: transparent;
}

/* Trending Topics */
.trending-topics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trending-item {
    padding: 1.25rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 60px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.trending-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trending-item:hover::before {
    opacity: 1;
}

.trending-item:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.trending-hashtag {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

.trending-item:hover .trending-hashtag {
    color: white;
    text-decoration: none;
}

/* Eski trending list için */
.trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trending-list li {
    padding: 1rem;
    background: var(--bg-hover);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.trending-list li:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.trending-list li a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

.trending-list li:hover a {
    color: white;
}

/* Site Status */
.site-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 150px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-hover);
    border-radius: 8px;
    min-height: 60px;
}

.status-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--error-color);
}

.status-indicator.online {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.8); }
    100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
}

.status-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

/* Eski status section için - UPDATED v2.0 */
.status-section {
    min-height: 250px !important;
}

.status-section .status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-hover);
    border-radius: 8px;
    min-height: 60px;
}

.status-section .status-indicator span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

/* Popular News */
.popular-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 250px;
    max-width: 100%;
    overflow: hidden;
}

.popular-news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-hover);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 90px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1rem;
}

.popular-news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popular-news-item:hover {
    background: var(--bg-card);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.popular-news-item:hover::before {
    opacity: 1;
}

.popular-news-image {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.popular-news-item:hover .popular-news-image {
    transform: scale(1.05);
}

.popular-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
    overflow: hidden;
}

.popular-news-content h5 {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.popular-news-content h5 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.popular-news-content h5 a:hover {
    color: var(--primary-color);
}

.popular-news-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-news-date::before {
    content: '🕒';
    font-size: 0.75rem;
}

.view-count {
    color: var(--text-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Eski popular news için - UPDATED v2.0 */
.popular-news {
    min-height: 350px !important;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 200px;
}

.news-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-hover);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 80px;
}

.news-item:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.news-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-info h6 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.news-info h6 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-info h6 a:hover {
    color: var(--primary-color);
}

.news-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Newsletter Widget */
.newsletter-widget {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-group input {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    background: var(--bg-hover);
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Eski newsletter için - UPDATED v2.0 */
.newsletter {
    text-align: center !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.newsletter p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.newsletter-form button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Performance Widget */
.performance-widget {
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.performance-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-hover);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.performance-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.performance-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Eski progress section için - UPDATED v2.0 */
.progress-section {
    text-align: center !important;
    min-height: 250px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.progress-professional {
    width: 100%;
    height: 12px;
    background: var(--bg-hover);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-professional .progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    transition: width 0.3s ease;
    width: 95%;
}

.progress-section small {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}






.trending-topics h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.trending-list {
    list-style: none;
    padding: 0;
}

.trending-list li {
    margin-bottom: 0.5rem;
}

.trending-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.trending-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Content Wrapper */
.content-wrapper {
    padding: 0 1rem;
    background-color: var(--bg-primary);
    margin-top: 0;
}

/* Reduce spacing between sections */
.latest-news,
.blog-section,
.news-section,
.blog-posts-section {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Reduce spacing in main content */
.main-content {
    padding-top: 0;
}

/* Remove underlines from filter buttons and category links */
.filter-btn,
.filter-btn:hover,
.filter-btn:focus,
.filter-btn:active,
.filter-btn.active,
.category-filters a,
.category-filters a:hover,
.category-filters a:focus,
.category-filters a:active {
    text-decoration: none !important;
}

/* Hero Section - Modern & Elite */
.hero-section {
    margin-bottom: 2rem;
    position: relative;
}

.hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 1;
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(99, 102, 241, 0.3);
}

.hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.8) contrast(1.1);
}

.hero-card:hover .hero-image img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(99, 102, 241, 0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    z-index: 2;
}

/* Dark mode için overlay düzeltmeleri */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(99, 102, 241, 0.1) 100%) !important;
}

.hero-content {
    color: white;
    max-width: 700px;
    position: relative;
    z-index: 3;
}

/* Dark mode için hero section düzeltmeleri */
.hero-title {
    color: white !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-category {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
    text-shadow: none !important;
}

.hero-category {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #e0e7ff;
    font-weight: 400;
}

.btn-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    background: transparent !important;
}

.section-header h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-all {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-all:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

/* News Cards - Modern & Elite */
.news-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    will-change: transform;
    contain: layout style paint;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.news-card.featured {
    border: 2px solid rgba(99, 102, 241, 0.6);
    box-shadow: 0 15px 35px -12px rgba(99, 102, 241, 0.2);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 250px;
}

.news-card.small .news-image {
    height: 150px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.news-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.news-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-card.featured .news-title {
    font-size: 1.4rem;
}

.news-card.small .news-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.news-card.small .news-excerpt {
    display: none;
}

.news-card.small .news-content {
    padding: 1rem;
}

.news-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-title a:hover {
    color: var(--text-primary);
    text-decoration: none;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-meta i {
    color: var(--primary-color);
}

/* Review Cards */
.review-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.review-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.review-content {
    padding: 1.5rem;
}

.review-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.review-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-rating {
    color: var(--accent-color);
}

.review-rating i {
    margin-right: 0.125rem;
}

.reviewer {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Popular News */
.popular-news {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.popular-news h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: var(--bg-hover);
}

.news-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.news-info h6 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.news-info h6 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-info h6 a:hover {
    color: var(--primary-color);
}

.news-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Newsletter */
.newsletter {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.newsletter h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form .form-control {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-section h5,
.footer-section h6 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.copyright,
.powered-by,
.developed-by {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .search-box .form-control {
        width: 200px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding: 1rem 0;
    }

    .content-wrapper {
        padding: 0 0.5rem;
    }

    .hero-overlay {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .search-box .form-control {
        width: 150px;
    }

    .news-content,
    .review-content {
        padding: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.newly-added {
    animation: none !important;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Selection Styling */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Page Header Styles */
.page-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.contact-page-header {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.page-header h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filters */
.category-filters {
    margin-bottom: 2rem;
}

.category-filters a,
.category-filters button,
.category-filters .btn {
    text-decoration: none !important;
}

.category-filters a:hover,
.category-filters button:hover,
.category-filters .btn:hover {
    text-decoration: none !important;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn:focus,
.filter-btn:active {
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    text-decoration: none;
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: flex-end;
}

.view-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    contain: layout;
    align-items: start;
}

.news-grid > * {
    min-height: 0;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-grid.list-view {
    grid-template-columns: 1fr;
}

.news-grid.list-view .news-card {
    display: flex;
    flex-direction: row;
    height: auto;
}

.news-grid.list-view .news-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.news-grid.list-view .news-content {
    flex: 1;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    will-change: transform;
    contain: layout style paint;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card.featured {
    border: 2px solid var(--primary-color);
    grid-column: 1 / -1;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card.featured .blog-title {
    font-size: 1.8rem;
}

.blog-card .blog-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card .blog-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: none !important;
}

.news-meta .author,
.news-meta span.author {
    display: none !important;
}

.author-avatar {
    display: none !important;
}

.author-details {
    display: none !important;
}

.author-name {
    display: none !important;
}

.author-title {
    display: none !important;
}

.blog-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-stats i {
    color: var(--primary-color);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    contain: layout;
    align-items: start;
}

.blog-grid > * {
    min-height: 0;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Most Read Blogs */
.most-read-blogs {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.most-read-blogs h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-item:hover {
    background: var(--bg-hover);
}

.blog-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.blog-info h6 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.blog-info h6 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-info h6 a:hover {
    color: var(--primary-color);
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Blog Categories */
.blog-categories {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.blog-categories h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list .count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Article Content */
.article-content {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date,
.article-author,
.article-read-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-date i,
.article-author i,
.article-read-time i {
    color: var(--primary-color);
}

.article-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-body {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

.article-body h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.article-body h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-body em {
    color: var(--text-secondary);
    font-style: italic;
}

.article-quote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-quote p {
    margin: 0;
    font-size: 1.1rem;
}

.deals-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.deals-table table {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
}

.deals-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem;
}

.deals-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item h4 i {
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-year {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    height: fit-content;
}

.timeline-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Author Info Section */
.author-info-section {
    display: none !important;
}

.author-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar {
    display: none !important;
}

.author-details h5 {
    display: none !important;
}

.author-title {
    display: none !important;
}

.author-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Article Tags */
.article-tags {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.article-tags h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Social Share */
.social-share {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-share h6 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.reddit {
    background: #ff4500;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Related News/Suggested Posts */
.related-news,
.suggested-posts {
    margin-top: 3rem;
}

.related-news h3,
.suggested-posts h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.related-card,
.suggested-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.related-card:hover,
.suggested-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.related-image,
.suggested-image {
    height: 150px;
    overflow: hidden;
}

.related-image img,
.suggested-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.related-card:hover .related-image img,
.suggested-card:hover .suggested-image img {
    transform: scale(1.05);
}

.related-content,
.suggested-content {
    padding: 1.5rem;
}

.related-content h5,
.suggested-content h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.related-content h5 a,
.suggested-content h5 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-content h5 a:hover,
.suggested-content h5 a:hover {
    color: var(--primary-color);
}

.related-content p,
.suggested-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin: 3rem 0;
}

.btn-load-more {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Page Styles */
.contact-form-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 0;
}

.contact-form-section h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--bg-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-info-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.contact-info-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.contact-details small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-media-section {
    margin-bottom: 2rem;
}

.social-media-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    transform: translateX(5px);
}

.social-link i {
    width: 20px;
    text-align: center;
}

.social-link.twitter:hover {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: #e4405f;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.discord:hover {
    background: #5865f2;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.faq-section h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.accordion-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.accordion-button {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.accordion-body {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
    line-height: 1.6;
}

/* AdSense Styles */
.adsense-slot {
    margin: 2rem 0;
    text-align: center;
    background: var(--bg-hover);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.adsense-slot:hover {
    border-color: var(--primary-color);
    background: var(--bg-card);
}

.adsense-slot p {
    margin: 0;
    font-weight: 500;
}

.adsense-slot .ad-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.adsense-slot .ad-placeholder:hover {
    border-color: var(--primary-color);
    background: var(--bg-hover);
}

.adsense-slot .ad-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.adsense-slot .ad-placeholder p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.adsense-slot .ad-placeholder small {
    color: var(--text-muted);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .view-toggle {
        justify-content: flex-start;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .social-card {
        padding: 0.75rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-name {
        font-size: 0.9rem;
    }

    .social-desc {
        font-size: 0.8rem;
    }
}

/* Professional Enhancements */
.professional-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.professional-card:hover::before {
    opacity: 1;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Enhanced Button Styles */
.btn-professional {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-professional:hover::before {
    left: 100%;
}

.btn-professional:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Form Styles */
.form-control-professional {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control-professional:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--bg-hover);
}

.form-control-professional::placeholder {
    color: var(--text-muted);
}

.form-select.form-control-professional {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-select.form-control-professional:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--bg-hover);
}

.form-select.form-control-professional option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Enhanced Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Tooltips */
.tooltip-professional {
    position: relative;
}

.tooltip-professional::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.tooltip-professional:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Enhanced Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-indicator.online {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-indicator.offline {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-indicator.maintenance {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Enhanced Progress Bars */
.progress-professional {
    background: var(--bg-hover);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    position: relative;
}

.progress-professional .progress-bar {
    background: var(--gradient-primary);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-professional .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Notifications */
.notification-professional {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transform: translateX(400px);
    transition: var(--transition);
    max-width: 400px;
}

.notification-professional.show {
    transform: translateX(0);
}

.notification-professional.success {
    border-left: 4px solid var(--success-color);
}

.notification-professional.error {
    border-left: 4px solid var(--error-color);
}

.notification-professional.warning {
    border-left: 4px solid var(--warning-color);
}

/* Status Section */
.status-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

.status-section h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Progress Section */
.progress-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}

.progress-section h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.progress-section small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

/* Advanced Search Styles */
.search-highlight {
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3) !important;
    transform: scale(1.02) !important;
    transition: all 0.3s ease !important;
}

.search-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.search-results-count {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Search Loading State */
.btn-search.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-search.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Global Search Modal Styles */
.global-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-search-modal.show {
    opacity: 1;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

.search-modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.search-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.search-modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 2rem;
}

.search-summary {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.search-summary p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.search-section {
    margin-bottom: 2rem;
}

.search-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-section h4 i {
    color: var(--primary-color);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.search-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.search-result-type {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.search-result-type.news {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.search-result-type.blog {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.search-result-category {
    padding: 0.25rem 0.75rem;
    background: var(--bg-hover);
    color: var(--text-muted);
    border-radius: 20px;
    font-size: 0.8rem;
}

.search-result-title {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.search-result-title mark {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
}

.search-result-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.search-result-excerpt mark {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.search-result-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-result-relevance {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.relevance-bar {
    flex: 1;
    height: 4px;
    background: var(--bg-hover);
    border-radius: 2px;
    overflow: hidden;
}

.relevance-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #10b981);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.relevance-score {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    min-width: 60px;
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.no-results h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .search-modal-header {
        padding: 1rem 1.5rem;
    }

    .search-modal-body {
        padding: 1.5rem;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .search-result-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1200px) {
    /* Large screens - Sidebar adjustments */
    .sidebar {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sidebar h4,
    .sidebar .widget-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    /* Medium screens - Sidebar adjustments */
    .sidebar {
        margin-bottom: 2rem;
        padding: 1.25rem;
    }

    .sidebar h4,
    .sidebar .widget-title {
        font-size: 1.1rem;
    }

    .sidebar .list-group-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

    /* Main content adjustments */
    .main-content {
        margin-bottom: 2rem;
    }

    /* Card adjustments */
    .news-card, .blog-card {
        margin-bottom: 1.5rem;
    }

    /* Hero section */
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Search box */
    .search-box {
        margin-top: 0 !important;
        margin: 0 !important;
    }

    .search-box input {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Hero section */
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Cards */
    .news-card, .blog-card {
        margin-bottom: 1rem;
    }

    .news-card .news-content,
    .blog-card .blog-content {
        padding: 1rem;
    }

    .news-card .news-title,
    .blog-card .blog-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .news-card .news-excerpt,
    .blog-card .blog-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Sidebar */
    .sidebar {
        padding: 1rem;
    }

    .sidebar h4 {
        font-size: 1.1rem;
    }

    .sidebar .list-group-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Search box */
    .search-box {
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-box input {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .search-box .btn-search {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer .list-unstyled li {
        margin-bottom: 0.5rem;
    }

    .footer .list-unstyled a {
        font-size: 0.9rem;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    /* Global search modal */
    .search-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }

    .search-modal-header {
        padding: 1rem 1.5rem;
    }

    .search-modal-body {
        padding: 1.5rem;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .search-result-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 0.75rem;
    }

    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero section */
    .hero-section {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn-hero {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Page headers */
    .page-header {
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header .page-description {
        font-size: 0.9rem;
    }

    /* Cards */
    .news-card, .blog-card {
        margin-bottom: 1rem;
    }

    .news-card .news-image,
    .blog-card .blog-image {
        height: 180px;
    }

    .news-card .news-content,
    .blog-card .blog-content {
        padding: 0.75rem;
    }

    .news-card .news-title,
    .blog-card .blog-title {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .news-card .news-excerpt,
    .blog-card .blog-excerpt {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .news-card .news-meta,
    .blog-card .blog-meta {
        font-size: 0.75rem;
    }

    .news-card .news-meta span,
    .blog-card .blog-meta span {
        margin-right: 0.75rem;
    }

    /* Sidebar */
    .sidebar {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .sidebar h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .sidebar .list-group-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .sidebar .adsense-slot {
        height: 120px;
        margin-bottom: 1rem;
    }

    /* Search box */
    .search-box {
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .search-box input {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .search-box .btn-search {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
        text-align: center;
    }

    .footer .row > div {
        margin-bottom: 1.5rem;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer .list-unstyled li {
        margin-bottom: 0.4rem;
    }

    .footer .list-unstyled a {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .social-links a {
        margin: 0 0.5rem;
        font-size: 1.2rem;
    }

    /* Contact form */
    .contact-form {
        padding: 1rem;
    }

    .contact-form h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-form .form-group {
        margin-bottom: 0.75rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-form .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Global search modal */
    .search-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .search-modal-header {
        padding: 1rem;
    }

    .search-modal-header h3 {
        font-size: 1.2rem;
    }

    .search-modal-body {
        padding: 1rem;
        max-height: calc(100vh - 80px);
    }

    .search-summary {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .search-summary p {
        font-size: 0.9rem;
    }

    .search-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .search-result-card {
        padding: 1rem;
    }

    .search-result-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .search-result-excerpt {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .search-result-meta {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .relevance-score {
        font-size: 0.7rem;
    }

    /* Category filters */
    .category-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .category-filters .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* View toggle */
    .view-toggle {
        margin-bottom: 1rem;
    }

    .view-toggle .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Load more button */
    .load-more-section {
        margin-top: 1.5rem;
    }

    .btn-load-more {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Article content */
    .article-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .article-content h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }

    .article-content h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.75rem;
    }

    .article-content p {
        margin-bottom: 1rem;
    }

    .article-content img {
        margin: 1rem 0;
        border-radius: 8px;
    }

    /* Author info */
    .author-info {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .author-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .author-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Related content */
    .related-content {
        margin-top: 2rem;
    }

    .related-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    /* FAQ */
    .faq-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .accordion-item {
        margin-bottom: 0.5rem;
    }

    .accordion-button {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .accordion-body {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Light Theme Styles */
[data-theme="light"] {
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-hover: #f1f5f9;
    --border-color: #e2e8f0;
    --border-light: #cbd5e1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-overlay: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="light"] .navbar {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .hero-section {
    background: transparent !important;
}

[data-theme="light"] .hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(99, 102, 241, 0.1) 100%) !important;
}

[data-theme="light"] .hero-content {
    color: white !important;
}

[data-theme="light"] .hero-title {
    color: white !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="light"] .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="light"] .hero-category {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
}

[data-theme="light"] .btn-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="light"] .news-card,
[data-theme="light"] .blog-card {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    background: var(--bg-card) !important;
}

[data-theme="light"] .news-card:hover,
[data-theme="light"] .blog-card:hover {
    background-color: var(--bg-hover) !important;
    border-color: var(--primary-color) !important;
}

[data-theme="light"] .sidebar {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

[data-theme="light"] .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .btn-outline-secondary:hover {
    background-color: var(--bg-hover);
    border-color: var(--border-light);
    color: var(--text-primary);
}

[data-theme="light"] .theme-toggle {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .theme-toggle:hover {
    background-color: var(--bg-hover);
    border-color: var(--border-light);
}

[data-theme="light"] .search-modal-content {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .search-result-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .search-result-card:hover {
    border-color: var(--primary-color);
}

/* Search button - Keep original style in light mode */
[data-theme="light"] .btn-search {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
}

[data-theme="light"] .btn-search:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    transform: scale(1.05) !important;
}

[data-theme="light"] .btn-search i {
    color: white !important;
}

[data-theme="light"] .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .accordion-button {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

[data-theme="light"] .accordion-button:not(.collapsed) {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

[data-theme="light"] .accordion-body {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

/* Light Theme - Sidebar Styles */
[data-theme="light"] .sidebar-right {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .sidebar-right .widget-title,
[data-theme="light"] .sidebar h4,
[data-theme="light"] .sidebar h5,
[data-theme="light"] .sidebar h3 {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .sidebar-right .sidebar-widget {
    background-color: transparent !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .popular-news,
[data-theme="light"] .newsletter {
    background-color: transparent !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .popular-news h5,
[data-theme="light"] .newsletter h5 {
    color: var(--text-primary) !important;
}

[data-theme="light"] .popular-news p,
[data-theme="light"] .newsletter p {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .news-item {
    background-color: var(--bg-hover) !important;
    border-color: var(--border-color) !important;
}

[data-theme="light"] .news-item:hover {
    background-color: var(--bg-card) !important;
    border-color: var(--primary-color) !important;
}

[data-theme="light"] .news-info h6,
[data-theme="light"] .news-info h6 a {
    color: var(--text-primary) !important;
}

[data-theme="light"] .news-info h6 a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .news-date,
[data-theme="light"] .view-count {
    color: var(--text-muted) !important;
}

[data-theme="light"] .popular-news-item {
    background-color: var(--bg-hover) !important;
    border-color: var(--border-color) !important;
}

[data-theme="light"] .popular-news-item:hover {
    background-color: var(--bg-card) !important;
    border-color: var(--primary-color) !important;
}

[data-theme="light"] .popular-news-content h5,
[data-theme="light"] .popular-news-content h5 a {
    color: var(--text-primary) !important;
}

[data-theme="light"] .popular-news-content h5 a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .popular-news-date,
[data-theme="light"] .view-count {
    color: var(--text-muted) !important;
}

[data-theme="light"] .newsletter-form .form-control {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .newsletter-form .form-control::placeholder {
    color: var(--text-muted) !important;
}

[data-theme="light"] .newsletter-form .form-control:focus {
    border-color: var(--primary-color) !important;
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .news-card .news-title,
[data-theme="light"] .news-card .news-title a,
[data-theme="light"] .blog-card .blog-title,
[data-theme="light"] .blog-card .blog-title a {
    color: var(--text-primary) !important;
}

[data-theme="light"] .news-card .news-title a:hover,
[data-theme="light"] .blog-card .blog-title a:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .news-card .news-excerpt,
[data-theme="light"] .blog-card .blog-excerpt {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .news-card .news-meta,
[data-theme="light"] .blog-card .blog-meta {
    color: var(--text-muted) !important;
}

[data-theme="light"] .news-card .news-meta span,
[data-theme="light"] .blog-card .blog-meta span {
    color: var(--text-muted) !important;
}

[data-theme="light"] .news-category,
[data-theme="light"] .blog-category {
    color: var(--text-primary) !important;
    background-color: var(--bg-hover) !important;
}

[data-theme="light"] .section-header {
    background: transparent !important;
    border-bottom-color: var(--border-color) !important;
}

[data-theme="light"] .section-header h2 {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

[data-theme="light"] .view-all {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

[data-theme="light"] .page-title,
[data-theme="light"] .page-description {
    color: var(--text-primary) !important;
}

[data-theme="light"] .section-header p {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .stat-card {
    background-color: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

[data-theme="light"] .stat-number {
    color: var(--text-primary) !important;
}

[data-theme="light"] .stat-label {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .trending-topics,
[data-theme="light"] .trending-list,
[data-theme="light"] .trending-list li,
[data-theme="light"] .trending-list a {
    color: var(--text-primary) !important;
}

[data-theme="light"] .trending-list a:hover {
    color: var(--primary-color) !important;
}

/* Comprehensive Light Theme Styles */
[data-theme="light"] .card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 2px 4px var(--shadow-color);
}

[data-theme="light"] .card-header {
    background-color: var(--bg-hover);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .card-body {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

[data-theme="light"] .table {
    color: var(--text-primary);
}

[data-theme="light"] .table th {
    background-color: var(--bg-hover);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .table td {
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--bg-hover);
}

[data-theme="light"] .list-group-item {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .list-group-item:hover {
    background-color: var(--bg-hover);
}

[data-theme="light"] .modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .modal-header {
    background-color: var(--bg-hover);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="light"] .modal-body {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

[data-theme="light"] .modal-footer {
    background-color: var(--bg-hover);
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
}

[data-theme="light"] .dropdown-item {
    color: var(--text-primary);
}

[data-theme="light"] .dropdown-item:hover {
    background-color: var(--bg-hover);
    color: var(--text-primary);
}

[data-theme="light"] .nav-tabs .nav-link {
    color: var(--text-secondary);
    border-color: var(--border-color);
}

[data-theme="light"] .nav-tabs .nav-link:hover {
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="light"] .nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="light"] .pagination .page-link {
    color: var(--text-primary);
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="light"] .pagination .page-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-hover);
    border-color: var(--border-color);
}

[data-theme="light"] .pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

[data-theme="light"] .alert {
    border: 1px solid var(--border-color);
}

[data-theme="light"] .alert-primary {
    background-color: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: var(--text-primary);
}

[data-theme="light"] .badge {
    color: white;
}

[data-theme="light"] .text-muted {
    color: var(--text-muted) !important;
}

[data-theme="light"] .text-secondary {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .bg-light {
    background-color: var(--bg-hover) !important;
}

[data-theme="light"] .bg-dark {
    background-color: var(--bg-card) !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .border {
    border-color: var(--border-color) !important;
}

[data-theme="light"] .border-top {
    border-top-color: var(--border-color) !important;
}

[data-theme="light"] .border-bottom {
    border-bottom-color: var(--border-color) !important;
}

[data-theme="light"] .border-start {
    border-left-color: var(--border-color) !important;
}

[data-theme="light"] .border-end {
    border-right-color: var(--border-color) !important;
}

/* About Page Styles */
.about-hero {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-hover) 100%);
    border-radius: 20px;
}

.about-hero-content h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.about-hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.what-we-do {
    margin-bottom: 4rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.our-values {
    margin-bottom: 4rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.team-section {
    margin-bottom: 4rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
}

/* Privacy & Terms Page Styles */
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.terms-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    align-items: center;
    gap: 0.75rem;
}

.section-content {
    padding: 2rem;
}

.section-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.usage-icon i {
    font-size: 1.5rem;
    color: white;
}

.usage-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.usage-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.sharing-info {
    margin: 2rem 0;
}

.sharing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-hover);
    border-radius: 12px;
}

.sharing-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sharing-icon i {
    font-size: 1.2rem;
    color: white;
}

.sharing-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sharing-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-features {
    margin: 1.5rem 0;
}

.cookie-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-item:last-child {
    border-bottom: none;
}

.cookie-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.cookie-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.security-icon i {
    font-size: 1.5rem;
    color: white;
}

.security-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.right-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.right-item h4 i {
    color: var(--primary-color);
}

.right-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 0;
}

/* Contact Row Alignment - Force Alignment */
.contact-row {
    align-items: flex-start !important;
    display: flex !important;
}

.contact-row .col-lg-8,
.contact-row .col-lg-4 {
    display: flex;
    flex-direction: column;
}

.contact-content .row {
    margin-left: 0;
    margin-right: 0;
}

.contact-content .col-lg-8,
.contact-content .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
}

.contact-form-section,
.contact-info,
.social-media-modern {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.contact-item {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-item h5,
.contact-item p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.social-card {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.social-info {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.social-name,
.social-desc {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-row .col-lg-8,
.contact-row .col-lg-4 {
    display: flex !important;
    flex-direction: column !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.contact-form-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex: 1;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.contact-info {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex: 1;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

/* Force same height for both sections */
.contact-row .col-lg-8 > *,
.contact-row .col-lg-4 > * {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Override Bootstrap margins for contact page */
.contact-content .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-content .col-lg-8,
.contact-content .col-lg-4 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Ensure both sections start at the same level */
.contact-form-section,
.contact-info {
    position: relative;
    top: 0 !important;
    transform: translateY(0) !important;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    background: var(--bg-hover);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.contact-item:hover {
    background: var(--bg-card);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item > div {
    flex: 1;
}

.contact-item h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item span {
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Modern Social Media Styles */
.social-media-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.social-media-modern h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-hover);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.social-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
    background: var(--bg-card);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2, #0d5bb8);
    color: white;
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
    color: white;
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-card.discord .social-icon {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-card:hover .social-name {
    color: var(--primary-color);
}

.social-card:hover .social-desc {
    color: var(--text-primary);
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.license-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.license-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.license-item:first-child .license-icon {
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
}

.license-item:last-child .license-icon {
    background: linear-gradient(135deg, var(--error-color), var(--warning-color));
}

.license-icon i {
    font-size: 1.5rem;
    color: white;
}

.license-item h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.license-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.license-item li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.license-item li:last-child {
    border-bottom: none;
}

.license-item li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.account-info {
    margin: 2rem 0;
}

.account-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-hover);
    border-radius: 12px;
}

.account-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-icon i {
    font-size: 1.2rem;
    color: white;
}

.account-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.account-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.conduct-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.rule-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.rule-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rule-item h4 i {
    color: var(--primary-color);
}

.rule-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.ip-info {
    margin: 2rem 0;
}

.ip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-hover);
    border-radius: 12px;
}

.ip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ip-icon i {
    font-size: 1.2rem;
    color: white;
}

.ip-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ip-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-info {
    margin: 2rem 0;
}

.disclaimer-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer-item h4 i {
    color: var(--warning-color);
}

.disclaimer-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.liability-info {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.liability-list {
    margin: 1.5rem 0;
}

.liability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.liability-item:last-child {
    border-bottom: none;
}

.liability-item i {
    color: var(--error-color);
    font-size: 1rem;
}

.liability-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legal-info {
    margin: 2rem 0;
}

.legal-item {
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-item h4 i {
    color: var(--primary-color);
}

.legal-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    /* About Page Mobile */
    .about-hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .about-hero-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-hero-content p {
        text-align: center;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .about-hero-image {
        margin-top: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card,
    .value-card,
    .team-card {
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .value-icon {
        margin: 0 auto 1rem;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .team-image img {
        height: 200px;
    }

    .team-info {
        padding: 1rem;
    }

    .contact-cta {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Privacy & Terms Mobile */
    .privacy-content,
    .terms-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .privacy-section,
    .terms-section {
        margin-bottom: 1.5rem;
    }

    .section-header {
        padding: 1rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .section-content {
        padding: 1.5rem;
    }

    .section-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-grid,
    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .license-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .conduct-rules {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card,
    .usage-item,
    .right-item,
    .license-item {
        padding: 1rem;
    }

    .info-icon,
    .usage-icon,
    .license-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .info-icon i,
    .usage-icon i,
    .license-icon i {
        font-size: 1rem;
    }

    .sharing-item,
    .account-item,
    .ip-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .sharing-icon,
    .account-icon,
    .ip-icon {
        margin: 0 auto 1rem;
    }

    .security-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .security-item {
        padding: 1rem;
    }

    .security-icon {
        width: 50px;
        height: 50px;
    }

    .security-icon i {
        font-size: 1.2rem;
    }

    .cookie-item {
        padding: 0.5rem 0;
    }

    .cookie-item i {
        font-size: 0.9rem;
    }

    .cookie-item span {
        font-size: 0.85rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 0.5rem 0;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .disclaimer-item,
    .legal-item {
        padding: 1rem;
    }

    .liability-info {
        padding: 1.5rem;
    }

    .liability-item {
        padding: 0.5rem 0;
    }

    .liability-item i {
        font-size: 0.9rem;
    }

    .liability-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    /* About Page Small Mobile */
    .about-hero {
        padding: 1.5rem 0.5rem;
        margin-bottom: 1.5rem;
    }

    .about-hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .about-hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card,
    .value-card,
    .team-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.2rem;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 1rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon i {
        font-size: 1.2rem;
    }

    .value-content h4 {
        font-size: 1.1rem;
    }

    .value-content p {
        font-size: 0.85rem;
    }

    .team-image img {
        height: 180px;
    }

    .team-info {
        padding: 0.75rem;
    }

    .team-info h4 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: 0.8rem;
    }

    .team-bio {
        font-size: 0.8rem;
    }

    .contact-cta {
        padding: 1.5rem 0.5rem;
        margin: 1.5rem 0;
    }

    .cta-content h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .cta-buttons .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Privacy & Terms Small Mobile */
    .privacy-content,
    .terms-content {
        padding: 0 0.5rem;
    }

    .privacy-section,
    .terms-section {
        margin-bottom: 1rem;
    }

    .section-header {
        padding: 0.75rem 1rem;
    }

    .section-header h2 {
        font-size: 1rem;
        gap: 0.25rem;
    }

    .section-header h2 i {
        font-size: 0.9rem;
    }

    .section-content {
        padding: 1rem;
    }

    .section-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .info-grid,
    .usage-grid,
    .rights-grid,
    .license-grid,
    .conduct-rules {
        gap: 0.75rem;
    }

    .info-card,
    .usage-item,
    .right-item,
    .license-item,
    .rule-item {
        padding: 0.75rem;
    }

    .info-icon,
    .usage-icon,
    .license-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }

    .info-icon i,
    .usage-icon i,
    .license-icon i {
        font-size: 0.9rem;
    }

    .info-card h4,
    .usage-item h4,
    .right-item h4,
    .license-item h4,
    .rule-item h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .info-card li,
    .license-item li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .usage-item p,
    .right-item p,
    .rule-item p {
        font-size: 0.8rem;
    }

    .sharing-item,
    .account-item,
    .ip-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .sharing-icon,
    .account-icon,
    .ip-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .sharing-icon i,
    .account-icon i,
    .ip-icon i {
        font-size: 1rem;
    }

    .sharing-content h4,
    .account-content h4,
    .ip-content h4 {
        font-size: 1rem;
    }

    .sharing-content p,
    .account-content p,
    .ip-content p {
        font-size: 0.8rem;
    }

    .security-features {
        gap: 0.75rem;
    }

    .security-item {
        padding: 0.75rem;
    }

    .security-icon {
        width: 45px;
        height: 45px;
    }

    .security-icon i {
        font-size: 1.1rem;
    }

    .security-item h4 {
        font-size: 1rem;
    }

    .security-item p {
        font-size: 0.8rem;
    }

    .cookie-item {
        padding: 0.4rem 0;
    }

    .cookie-item i {
        font-size: 0.8rem;
    }

    .cookie-item span {
        font-size: 0.8rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-item {
        padding: 0.4rem 0;
    }

    .contact-item i {
        font-size: 0.9rem;
    }

    .contact-item span {
        font-size: 0.8rem;
    }

    .disclaimer-item,
    .legal-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .disclaimer-item h4,
    .legal-item h4 {
        font-size: 1rem;
    }

    .disclaimer-item p,
    .legal-item p {
        font-size: 0.8rem;
    }

    .liability-info {
        padding: 1rem;
    }

    .liability-item {
        padding: 0.4rem 0;
    }

    .liability-item i {
        font-size: 0.8rem;
    }

    .liability-item span {
        font-size: 0.8rem;
    }

    .liability-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    /* Tablet - Sidebar adjustments */
    .sidebar {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .sidebar h4,
    .sidebar .widget-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .sidebar .list-group-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .sidebar .adsense-slot {
        height: 120px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    /* Mobile - Hide sidebars */
    .sidebar {
        display: none !important;
    }

    /* Adjust main content for mobile */
    .col-lg-8.col-md-9 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Mobile page header */
    .page-header {
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .page-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Mobile content wrapper */
    .content-wrapper {
        padding: 0 0.5rem;
    }

    /* Mobile main content */
    .main-content {
        padding: 1rem 0;
    }

    /* Mobile navbar adjustments */
    .navbar-brand {
        font-size: 1.1rem;
    }

    .search-box {
        margin-top: 0 !important;
        margin: 0 !important;
        width: 100%;
    }

    .search-box input {
        font-size: 0.9rem;
    }

    .theme-toggle {
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    /* Extra small mobile adjustments */
    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-description {
        font-size: 0.85rem;
    }

    .content-wrapper {
        padding: 0 0.25rem;
    }

    .main-content {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .search-box input {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .btn-search {
        padding: 0.5rem;
    }

    .theme-toggle {
        padding: 0.5rem;
    }
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-stats {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.values-list {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.value-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.value-item h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-options {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Privacy & Terms Page Styles */
.privacy-content,
.terms-content {
    padding: 2rem 0;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
}

.privacy-section h2,
.terms-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.privacy-section h3,
.terms-section h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.privacy-section p,
.terms-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}


.privacy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-form-section,
.contact-info-section,
.social-media-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-form-section h2,
.contact-info-section h2,
.social-media-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.contact-form-section p,
.contact-info-section p,
.social-media-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-hover);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Modern Social Media Section */
.social-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-card.twitter .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.social-card.facebook .social-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bb8 100%);
    color: white;
}

.social-card.instagram .social-icon {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    color: white;
}

.social-card.youtube .social-icon {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.social-card.discord .social-icon {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
}

.social-card.twitch .social-icon {
    background: linear-gradient(135deg, #9146ff 0%, #7c3aed 100%);
    color: white;
}

.social-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.social-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.social-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-card:hover .social-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* PWA Styles */
.update-notification,
.install-prompt {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 350px;
    animation: slideInRight 0.3s ease-out;
}

.update-content,
.install-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.update-content,
.install-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.update-content,
.install-content .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    z-index: 10000;
    animation: slideInDown 0.3s ease-out;
}

.notification-success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notification-warning {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notification-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notification-info {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Offline Indicator */
.offline-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ef4444;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.offline-indicator.show {
    transform: translateY(0);
}

/* PWA Install Button */
.pwa-install-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

.pwa-install-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.pwa-install-btn.show {
    display: block;
    animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-info h4 {
        font-size: 1.1rem;
    }

    .social-header h2 {
        font-size: 2rem;
    }

    .update-notification,
    .install-prompt {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        left: 10px;
        right: 10px;
        transform: none;
    }

    .pwa-install-btn {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem;
    }
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.usage-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.usage-item h4 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.usage-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--text-primary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-section h2,
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .team-stats {
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .value-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-options {
        flex-direction: column;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .usage-item {
        padding: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }
}
    .page-header h1 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }

    .faq-section {
        padding: 1.5rem;
    }
} 
