/* Modern Theme for Azuriom - Inspired by Revolution and Deluxe themes */

/* Import additional stylesheets */
@import url('animations.css');
@import url('components.css');
@import url('textures.css');
:root {
    --primary: #6638ff;
    --secondary: #2a3254;
    --accent: #f8f9fa;
    --primary-rgb: 102, 56, 255;
    --secondary-rgb: 42, 50, 84;
    --accent-rgb: 248, 249, 250;
    --body-bg: #1a1f35;
    --body-color: #f0f0f0;
    --header-bg: var(--secondary);
    --header-color: #fff;
    --navbar-bg: rgba(26, 31, 53, 0.9);
    --navbar-color: #fff;
    --footer-bg: var(--secondary);
    --footer-color: #fff;
    --card-bg: #222840;
    --card-border: rgba(255, 255, 255, 0.05);
    --sidebar-bg: #1e2338;
    --divider-color: var(--primary);
}

/* Base styles */
html, body {
    height: 100%;
}

body {
    background-color: var(--body-bg);
    color: var(--body-color);
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow-x: hidden;
}

/* Overlay effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

#app {
    flex: 1 0 auto;
}

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

a:hover {
    color: #8562ff;
}

img {
    max-width: 100%;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--body-bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--secondary);
}

/* Page loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loaded #page-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), #7c57ff);
    border: none;
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(45deg, #5833d8, #6c48e5);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.35);
}

.btn-secondary {
    background-color: var(--secondary);
    border: none;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #343e64;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--secondary-rgb), 0.35);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
}

/* Glowing effects */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), #7c57ff, var(--primary));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.7;
    border-radius: inherit;
}

/* Cards and containers */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    background-color: rgba(var(--primary-rgb), 0.1);
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 1.5rem;
}

.card-title {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary);
}

.card-body {
    padding: 1.5rem;
}

/* Header styles */
.header-wrapper {
    background-color: var(--header-bg);
    color: var(--header-color);
    position: relative;
}

.header-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), #7c57ff, var(--primary));
}

.header-top {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: var(--header-color);
    opacity: 0.8;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-3px);
}

.user-area {
    color: var(--header-color);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-dropdown .nav-link {
    color: var(--header-color);
    opacity: 0.9;
}

.user-dropdown .nav-link:hover {
    opacity: 1;
    color: var(--primary);
}

/* Navbar styles */
.navbar {
    background-color: var(--navbar-bg);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--navbar-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), #7c57ff);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--navbar-color);
}

.dropdown-menu {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
}

.dropdown-item {
    color: var(--body-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary);
    color: #fff;
}

/* Split navbar with centered logo */
.navbar-brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Server status bar */
.server-status {
    background-color: rgba(var(--secondary-rgb), 0.5);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.status-online {
    color: #28a745;
    font-weight: 600;
}

.status-offline {
    color: #dc3545;
    font-weight: 600;
}

.server-copy-btn {
    cursor: pointer;
}

/* Hero section */
.hero-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--secondary);
    overflow: hidden;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.4) 0%, rgba(var(--secondary-rgb), 0.8) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg');
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 80%;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    max-height: 350px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-server-status .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Content wrapper */
.content-wrapper {
    flex: 1;
    padding: 4rem 0;
}

/* Section styles */
.section {
    padding: 4rem 0;
    position: relative;
}

.section-bg-accent {
    background-color: rgba(var(--secondary-rgb), 0.3);
}

.section-divider {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 3rem 0;
}

/* Server cards */
.servers-section {
    margin-bottom: 3rem;
}

.server-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    height: 100%;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.server-header {
    background: linear-gradient(45deg, var(--primary), #7c57ff);
    color: #fff;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.server-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg');
    opacity: 0.1;
}

.server-name {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.server-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.server-status.online {
    color: #28a745;
}

.server-status.offline {
    color: #dc3545;
}

.server-body {
    padding: 1.5rem;
}

.server-players .progress {
    height: 8px;
    margin-bottom: 0.75rem;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.server-players .progress-bar {
    background: linear-gradient(to right, var(--primary), #7c57ff);
    border-radius: 4px;
}

.server-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.server-actions {
    margin-top: 1.5rem;
}

.server-card-large .server-header {
    padding: 1.75rem;
}

.server-card-large .server-name {
    font-size: 1.5rem;
}

.server-card-large .server-body {
    padding: 1.75rem;
}

.server-card-large .server-description {
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Server list layout */
.servers-list .server-list-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.servers-list .server-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--primary);
}

.servers-list .server-name {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Server compact layout */
.servers-compact .server-compact-item {
    background-color: var(--card-bg);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.servers-compact .server-compact-item:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
}

.servers-compact .server-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.servers-compact .server-name {
    font-weight: 600;
}

.servers-compact .server-count,
.servers-compact .server-offline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.servers-compact .server-join {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.servers-compact .server-join:hover {
    color: #8562ff;
    transform: scale(1.1);
}

/* Stats section */
.stats-section {
    background-color: rgba(var(--secondary-rgb), 0.3);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg');
    opacity: 0.05;
}

.stats-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    height: 100%;
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.stats-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    background: linear-gradient(45deg, var(--primary), #7c57ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stats-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

/* Posts layouts */
.posts-section {
    margin-bottom: 3rem;
}

/* Post card layout */
.post-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    height: 100%;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.post-img {
    display: block;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.post-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card:hover .post-img::before {
    opacity: 1;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.post-content {
    padding: 1.5rem;
}

.post-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.post-date i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-title a {
    color: #fff;
    transition: all 0.3s ease;
}

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

.post-text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Post list layout */
.post-list-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.post-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--primary);
}

.post-list-content {
    flex: 1;
}

.post-list-image {
    width: 220px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.post-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.post-list-item:hover .post-list-image img {
    transform: scale(1.1);
}

/* Post compact layout */
.post-compact {
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.post-compact .post-title {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Widget styles */
.widget {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.widget-header {
    background: linear-gradient(45deg, var(--primary), #7c57ff);
    color: #fff;
    padding: 1rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.widget-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg');
    opacity: 0.1;
}

.widget-title {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.widget-body {
    padding: 1.5rem;
}

.discord-widget iframe {
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: #36393f;
}

/* Footer styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    margin-top: auto;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), #7c57ff, var(--primary));
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

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

.footer-main {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg');
    opacity: 0.05;
    pointer-events: none;
}

.footer-widget {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), #7c57ff);
    border-radius: 3px;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    margin-right: 0.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-post {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-post-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-post-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.footer-post-date i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.footer-social .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.footer-social .social-icons a:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

.footer-server h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-server .progress {
    height: 8px;
    margin-bottom: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.footer-server .progress-bar {
    background: linear-gradient(to right, var(--primary), #7c57ff);
    border-radius: 4px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary), #7c57ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.5);
}

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

.back-to-top:hover {
    background: linear-gradient(45deg, #5833d8, #6c48e5);
    color: #fff;
    transform: translateY(-5px);
}

/* Twitch widget */
.twitch-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.twitch-widget.stream-offline {
    display: none !important;
}

/* YouTube widget */
.youtube-widget {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.youtube-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.youtube-widget[style*="display: none"] {
    opacity: 0;
    visibility: hidden;
}

/* Boosty widget */
.boosty-widget iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    padding: 1.25rem 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    border-top: 1px solid var(--card-border);
}

/* Social sharing */
.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-share-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-share-btn i {
    margin-right: 0.5rem;
}

.share-facebook {
    background-color: #1877f2;
    border-color: #1877f2;
}

.share-twitch {
    background-color: #6441a5;
    border-color: #6441a5;
}

.share-boosty {
    background-color: #f15e2b;
    border-color: #f15e2b;
}

.share-reddit {
    background-color: #ff4500;
    border-color: #ff4500;
}

.share-discord {
    background-color: #5865f2;
    border-color: #5865f2;
}

.share-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
}

.share-copy {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Animations */
.animate-enabled .fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-enabled .slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-enabled .slide-down {
    animation: slideDown 0.8s ease forwards;
}

.animate-enabled .slide-left {
    animation: slideLeft 0.8s ease forwards;
}

.animate-enabled .slide-right {
    animation: slideRight 0.8s ease forwards;
}

.animate-enabled .zoom-in {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

@keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .post-list-item {
        flex-direction: column;
    }
    
    .post-list-image {
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
    
    .footer-bottom [class*="text-md-"] {
        text-align: center !important;
    }
    
    .stats-item {
        margin-bottom: 2rem;
    }
}

/* Utils */
.object-fit-cover {
    object-fit: cover;
}

.blur-bg {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.7), rgba(var(--secondary-rgb), 0.7));
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Additional UI components */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75em;
}

.badge-primary {
    background-color: var(--primary);
    color: #fff;
}

.badge-secondary {
    background-color: var(--secondary);
    color: #fff;
}

/* Typography utilities */
.text-gradient {
    background: linear-gradient(45deg, var(--primary), #7c57ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.letter-spacing-1 {
    letter-spacing: 1px !important;
}