/* NoWin Site - Premium Casino Dark Theme */
/* Aesthetic: Luxury Gaming with Glassmorphism */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --color-primary: #00FFE9;
    --color-primary-dim: #00d4c4;
    --color-primary-glow: rgba(0, 255, 233, 0.15);
    --color-primary-subtle: rgba(0, 255, 233, 0.08);

    /* Accent Colors */
    --color-accent: #E7272C;
    --color-accent-glow: rgba(231, 39, 44, 0.2);
    --color-gold: #FFD700;
    --color-gold-dim: #e6c200;

    /* Background Colors */
    --color-bg: #050508;
    --color-bg-secondary: #0a0a0f;
    --color-bg-tertiary: #12121a;
    --color-bg-card: #0d0d14;
    --color-bg-elevated: #16161f;

    /* Text Colors */
    --color-text: #f5f5f7;
    --color-text-muted: #8b8b9a;
    --color-text-dim: #5a5a6e;

    /* Border & Surface */
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --color-glass: rgba(13, 13, 20, 0.85);
    --color-glass-border: rgba(255, 255, 255, 0.08);

    /* Shadows & Effects */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow-primary: 0 0 40px rgba(0, 255, 233, 0.15);
    --shadow-glow-accent: 0 0 40px rgba(231, 39, 44, 0.2);

    /* Gradients */
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #050508 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    --gradient-primary: linear-gradient(135deg, #00FFE9 0%, #00b8aa 100%);
    --gradient-accent: linear-gradient(135deg, #E7272C 0%, #ff4444 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 255, 233, 0.08) 0%, transparent 50%);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    background-image: var(--gradient-hero);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(0, 255, 233, 0.3);
    color: #fff;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ================================
   REDIRECT BAR
================================ */
.redirect-bar {
    background: var(--gradient-accent);
    padding: 14px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.redirect-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.redirect-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-text 2s infinite;
}

.redirect-button:hover {
    color: #fff;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* ================================
   HEADER
================================ */
.header {
    background: var(--color-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo img {
    max-height: 44px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 233, 0.3));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--color-text-muted);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

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

.nav-link-primary {
    background: var(--gradient-primary) !important;
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 255, 233, 0.25);
}

.nav-link-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 233, 0.35);
    color: #000 !important;
}

.nav-link-accent {
    background: var(--gradient-accent) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 39, 44, 0.25);
}

.nav-link-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(231, 39, 44, 0.35);
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ================================
   MAIN CONTENT
================================ */
.main-content {
    padding: 50px 0;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.content-main {
    min-width: 0;
}

/* ================================
   BREADCRUMB
================================ */
.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--color-border);
}

.breadcrumb a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

/* ================================
   PAGE CONTENT
================================ */
.page-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 233, 0.3), transparent);
}

.page-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.content-body {
    margin-bottom: 32px;
}

.content-body p {
    margin-bottom: 18px;
    color: var(--color-text-muted);
}

.content-body h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--color-primary);
}

.content-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.content-body ul, .content-body ol {
    margin: 18px 0;
    padding-left: 28px;
}

.content-body li {
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 255, 233, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 255, 233, 0.4);
    color: #000;
}

.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(231, 39, 44, 0.25);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(231, 39, 44, 0.4);
    color: #fff;
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 36px 0;
}

/* ================================
   ALERT
================================ */
.alert {
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.alert-accent {
    background: var(--color-accent-glow);
    border-left: 4px solid var(--color-accent);
    color: var(--color-text);
}

/* ================================
   SIDEBAR
================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.widget {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.widget:hover {
    border-color: var(--color-border-hover);
}

.widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-text);
}

/* Logo Widget */
.widget-logo {
    text-align: center;
    padding: 24px;
}

.sidebar-logo {
    max-width: 100%;
    height: auto;
    transition: all var(--transition-base);
    filter: drop-shadow(0 0 20px rgba(0, 255, 233, 0.2));
}

.sidebar-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 30px rgba(0, 255, 233, 0.3));
}

/* Quick Links */
.quick-links {
    list-style: none;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 500;
    transition: all var(--transition-base);
}

.quick-link:hover {
    transform: translateX(6px);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.quick-link-primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 233, 0.2);
}

.quick-link-primary:hover {
    color: #000;
    box-shadow: 0 6px 25px rgba(0, 255, 233, 0.35);
}

.quick-link-accent {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 39, 44, 0.2);
}

.quick-link-accent:hover {
    color: #fff;
    box-shadow: 0 6px 25px rgba(231, 39, 44, 0.35);
}

/* Recent Posts */
.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 14px;
}

.recent-posts a {
    display: flex;
    gap: 14px;
    color: var(--color-text);
    padding: 10px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.recent-posts a:hover {
    background: rgba(255, 255, 255, 0.03);
}

.recent-posts img {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.recent-post-info {
    flex: 1;
}

.recent-post-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--color-text);
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

/* Tag Cloud / Anahtar Kelimeler */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(231, 39, 44, 0.15) 0%, rgba(231, 39, 44, 0.08) 100%);
    border: 1px solid rgba(231, 39, 44, 0.35);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b6b;
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
}

.tag:hover {
    background: linear-gradient(135deg, rgba(231, 39, 44, 0.3) 0%, rgba(231, 39, 44, 0.15) 100%);
    border-color: rgba(231, 39, 44, 0.6);
    color: #ff8585;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 39, 44, 0.25);
}

.tag.tag-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 15px;
}

.tag.tag-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 39, 44, 0.2);
}

.tag-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    background: rgba(0, 255, 233, 0.1);
    border: 1px solid rgba(0, 255, 233, 0.25);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.3;
    white-space: nowrap;
}

.tag-mini:hover {
    background: rgba(0, 255, 233, 0.2);
    border-color: rgba(0, 255, 233, 0.4);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.tag-small {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text-dim);
}

/* ================================
   TAG RESULTS PAGE
================================ */
.tag-result-count {
    color: var(--color-text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.tag-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.result-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.result-card-link {
    display: block;
    color: var(--color-text);
    text-decoration: none;
}

.result-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--color-bg-tertiary);
}

.result-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.result-card:hover .result-card-image img {
    transform: scale(1.05);
}

.result-card-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
}

.result-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-badge-page {
    background: linear-gradient(135deg, #00b8aa 0%, #00d4c4 100%);
    color: #fff;
}

.result-badge-blog {
    background: linear-gradient(135deg, #E7272C 0%, #ff4444 100%);
    color: #fff;
}

.result-card-content {
    padding: 22px;
}

.result-card-meta {
    margin-bottom: 10px;
}

.result-card-meta time {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.result-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-card:hover .result-card-title {
    color: var(--color-primary);
}

.result-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .tag-results {
        grid-template-columns: 1fr;
    }

    .result-card-image {
        height: 160px;
    }
}

/* ================================
   BLOG GRID
================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.blog-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-md);
}

.blog-card-link {
    display: block;
    color: var(--color-text);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--color-text);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

.blog-card-tags {
    display: flex;
    gap: 6px;
}

/* ================================
   BLOG ARTICLE
================================ */
.blog-article {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
}

.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 233, 0.3), transparent);
}

.blog-header {
    margin-bottom: 32px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.blog-tags .tag {
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 10px;
    background: rgba(231, 39, 44, 0.1);
    border: 1px solid rgba(231, 39, 44, 0.2);
    color: #ff6b6b;
    white-space: nowrap;
}

.blog-tags .tag:hover {
    background: rgba(231, 39, 44, 0.18);
    border-color: rgba(231, 39, 44, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(231, 39, 44, 0.15);
}

.blog-featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.blog-featured-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.blog-content {
    margin-bottom: 36px;
}

.blog-content p {
    margin-bottom: 18px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.blog-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 36px 0 18px;
    color: var(--color-primary);
}

.blog-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 28px 0 14px;
    color: var(--color-text);
}

.blog-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
    border: 1px solid var(--color-border);
}

/* ================================
   SHARE BUTTONS
================================ */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 36px;
}

.share-buttons span {
    color: var(--color-text-muted);
    font-weight: 500;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition-base);
}

.share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.share-twitter {
    background: #1da1f2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.share-twitter:hover {
    box-shadow: 0 6px 25px rgba(29, 161, 242, 0.4);
}

.share-facebook {
    background: #4267B2;
    box-shadow: 0 4px 15px rgba(66, 103, 178, 0.3);
}

.share-facebook:hover {
    box-shadow: 0 6px 25px rgba(66, 103, 178, 0.4);
}

.share-telegram {
    background: #0088cc;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.share-telegram:hover {
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.4);
}

/* ================================
   RELATED POSTS
================================ */
.related-posts {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.related-posts h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-text);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-card {
    display: block;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
    box-shadow: var(--shadow-sm);
}

.related-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.related-card span {
    display: block;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ================================
   FAQ SECTION
================================ */
.faq-section {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--color-border);
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

/* ================================
   PAGINATION
================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.pagination-link {
    padding: 12px 18px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-display);
    font-weight: 500;
    transition: all var(--transition-base);
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    transform: translateY(-2px);
}

.pagination-dots {
    padding: 12px 8px;
    color: var(--color-text-dim);
}

/* ================================
   ERROR PAGE
================================ */
.error-page {
    text-align: center;
    padding: 80px 40px;
}

.error-code {
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 0 60px rgba(0, 255, 233, 0.3);
}

.error-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-text);
}

.error-message {
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 40px;
    color: var(--color-text-muted);
}

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 24px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 233, 0.2), transparent);
}

.footer-backlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}

.backlink-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.backlink-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-primary);
}

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

.footer-section li {
    margin-bottom: 14px;
}

.footer-section a {
    color: var(--color-text-muted);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 233, 0.3);
}

.social-links a svg {
    width: 22px;
    height: 22px;
}

.social-links .social-support {
    width: auto;
    padding: 0 20px;
    border-radius: 24px;
    gap: 10px;
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(231, 39, 44, 0.25);
}

.social-links .social-support:hover {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 8px 30px rgba(231, 39, 44, 0.4);
}

.social-links .social-support span {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 500;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.page-content,
.blog-article,
.widget {
    animation: fadeInUp 0.5s ease-out;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.15s; }
.blog-card:nth-child(3) { animation-delay: 0.2s; }
.blog-card:nth-child(4) { animation-delay: 0.25s; }

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

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

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--color-bg-secondary);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 12px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid var(--color-border);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .page-content,
    .blog-article {
        padding: 24px;
    }

    .page-title,
    .blog-title {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

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

    .social-links {
        justify-content: center;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-title,
    .blog-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .widget {
        padding: 20px;
    }
}

/* ================================
   TABLES
================================ */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

thead {
    background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-tertiary) 100%);
}

thead th {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
}

tbody tr {
    transition: background var(--transition-fast);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--color-border);
}

tbody td {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    vertical-align: middle;
}

tbody td:first-child {
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
}

/* Info Table - Two Column Layout */
.info-table,
.content-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.info-table thead th,
.content-body table thead th {
    padding: 14px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, rgba(0, 255, 233, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 255, 233, 0.1);
}

.info-table tbody td,
.content-body table tbody td {
    padding: 12px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-table tbody td:first-child,
.content-body table tbody td:first-child {
    font-weight: 600;
    color: var(--color-text);
    width: 140px;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.01);
}

.info-table tbody td:last-child,
.content-body table tbody td:last-child {
    color: var(--color-text-muted);
}

.info-table tbody tr:hover,
.content-body table tbody tr:hover {
    background: rgba(0, 255, 233, 0.02);
}

.info-table tbody tr:not(:last-child) td,
.content-body table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--color-border);
}

/* Table responsive wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

.table-responsive table {
    margin: 0;
    min-width: 500px;
}

/* Striped Table Variant */
.table-striped tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

/* Compact Table Variant */
.table-compact thead th {
    padding: 10px 16px;
    font-size: 0.8rem;
}

.table-compact tbody td {
    padding: 8px 16px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    table,
    .info-table,
    .content-body table {
        display: block;
        overflow-x: auto;
    }

    thead th,
    tbody td,
    .info-table thead th,
    .info-table tbody td,
    .content-body table thead th,
    .content-body table tbody td {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .info-table tbody td:first-child,
    .content-body table tbody td:first-child {
        width: auto;
        min-width: 100px;
    }
}
