/*
Theme Name: Diablo IV - Builds & Guides
Theme URI: https://example.com
Author: Andreas Wagner
Author URI: https://example.com
Description: Ein dunkles, atmosphärisches WordPress-Theme im Diablo 4 Stil
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diablo-theme
Tags: responsive, dark, gaming, diablo, medieval
*/

/* Import Fonts - Cinzel für Gothic/Medieval Look */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:wght@400;600;700&family=Marcellus:wght@400&display=swap');


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Diablo 4 Color Palette */
    --primary-red: #b91d1d;
    --dark-red: #8b0000;
    --blood-red: #660000;
    --gold: #d4af37;
    --dark-gold: #a08428;
    --light-gold: #f4e5b8;
    --bg-black: #0a0a0a;
    --bg-dark: #1a1412;
    --bg-darker: #0f0d0c;
    --text-light: #d4c5b3;
    --text-dark: #8a7d6f;
    --border-dark: #2a2520;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-black);
    background-image: 
        linear-gradient(180deg, rgba(26, 20, 18, 0.9), rgba(10, 10, 10, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence baseFrequency="0.9" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05"/></svg>');
    overflow-x: hidden;
    position: relative;
}

/* Diablo Background Effects */
.diablo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ember-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(185, 29, 29, 0.03), transparent 60%),
                radial-gradient(ellipse at 30% 70%, rgba(139, 0, 0, 0.02), transparent 50%);
}

.dark-vignette {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}


/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, rgba(15, 13, 12, 0.98), rgba(15, 13, 12, 0.85));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-title {
    margin: 0;
}

.site-title a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.diablo-logo {
    color: var(--primary-red);
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 
        0 0 20px rgba(185, 29, 29, 0.8),
        0 0 40px rgba(185, 29, 29, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.site-tagline {
    color: var(--gold);
    font-family: 'Marcellus', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.site-title a:hover .diablo-logo {
    color: #ff3333;
    text-shadow: 
        0 0 30px rgba(255, 51, 51, 1),
        0 0 60px rgba(255, 51, 51, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Navigation */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

.site-nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid transparent;
    font-family: 'Marcellus', serif;
    position: relative;
    overflow: hidden;
}

.site-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.site-nav ul li a:hover::before {
    left: 100%;
}

.site-nav ul li a:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary-red);
    box-shadow: 0 0 12px rgba(185, 29, 29, 0.6);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, rgba(15, 13, 12, 0.95), rgba(10, 10, 10, 0.98)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="fire"><feTurbulence baseFrequency="0.02 0.05" seed="2" /></filter></defs><rect width="1200" height="800" filter="url(%23fire)" opacity="0.03" fill="%23b91d1d"/></svg>');
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    border-bottom: 3px solid rgba(185, 29, 29, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 60px 20px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--light-gold);
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(185, 29, 29, 0.3),
        3px 3px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    color: var(--text-dark);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: var(--light-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    font-family: 'Marcellus', serif;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    box-shadow: 
        0 0 20px rgba(185, 29, 29, 0.5),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    box-shadow: 
        0 0 40px rgba(255, 51, 51, 0.8),
        inset 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--light-gold);
    transform: translateY(-3px);
}


/* Main Content */
.site-content {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    position: relative;
}

.site-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

.welcome-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--light-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.welcome-section p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Posts Grid (Build Cards) */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Posts (Build Cards) */
.post {
    background: linear-gradient(135deg, rgba(26, 20, 18, 0.8), rgba(15, 13, 12, 0.9));
    border: 2px solid var(--border-dark);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.post:hover::before {
    opacity: 1;
}

.post:hover::after {
    border-color: rgba(212, 175, 55, 0.4);
}

.post:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(185, 29, 29, 0.2),
        inset 0 0 40px rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.post-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--border-dark);
}

.post-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 13, 12, 0.9));
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(20%) brightness(0.8);
}

.post:hover .post-thumbnail img {
    transform: scale(1.15);
    filter: grayscale(0%) brightness(1);
}

.post-content-wrapper {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.post-header {
    margin-bottom: 15px;
}

.post-category {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: var(--light-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Marcellus', serif;
    text-shadow: 0 0 10px rgba(185, 29, 29, 0.5);
}

.post-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--light-gold);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.post-title a {
    color: var(--light-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-title a:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.post-meta {
    color: var(--text-dark);
    font-size: 12px;
    display: flex;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Marcellus', serif;
}

.post-content {
    margin-top: 12px;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 15px;
}

.post-content p {
    margin-bottom: 12px;
}

.read-more {
    display: inline-block;
    margin-top: auto;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5), rgba(185, 29, 29, 0.5));
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-family: 'Marcellus', serif;
    align-self: flex-start;
}

.read-more:hover {
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(185, 29, 29, 0.5);
    transform: translateX(5px);
}


/* Featured Post */
.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(26, 20, 18, 0.95), rgba(15, 13, 12, 0.98));
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.9),
        inset 0 0 60px rgba(185, 29, 29, 0.05);
}

.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-red), var(--primary-red), var(--gold), var(--primary-red), var(--dark-red));
}

.featured-post .post-thumbnail {
    height: 100%;
    min-height: 500px;
    border-right: 2px solid var(--border-dark);
    border-bottom: none;
}

.featured-post-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post .post-category {
    font-size: 13px;
    padding: 8px 20px;
}

.featured-post .post-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.featured-post .post-content {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-post .read-more {
    padding: 14px 40px;
    font-size: 14px;
}


/* Single Post */
.single-post {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 20, 18, 0.9), rgba(15, 13, 12, 0.95));
    padding: 60px;
    border: 2px solid var(--border-dark);
}

.single-post .post-title {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
}

.single-post .post-meta {
    justify-content: center;
    margin-bottom: 40px;
}

.single-post .post-content {
    font-size: 18px;
    line-height: 1.9;
}

/* Single Page */
.single-page {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 20, 18, 0.8), rgba(15, 13, 12, 0.9));
    padding: 60px;
    border: 2px solid var(--border-dark);
}

.single-page .post-content {
    font-size: 17px;
    line-height: 1.8;
}

.single-page h2,
.single-post h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 18px;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.single-page h3,
.single-post h3 {
    font-family: 'Cinzel', serif;
    color: var(--light-gold);
    font-size: 20px;
    margin: 30px 0 15px;
    letter-spacing: 1px;
}

.single-page a,
.single-post a {
    color: var(--gold);
    transition: all 0.3s ease;
}

.single-page a:hover,
.single-post a:hover {
    color: var(--light-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* Pagination */
.pagination {
    margin: 60px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(185, 29, 29, 0.3));
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-family: 'Marcellus', serif;
    font-size: 14px;
}

.pagination a:hover {
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(185, 29, 29, 0.5);
}

.pagination .current {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.site-footer {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98), rgba(15, 13, 12, 0.95));
    border-top: 3px solid rgba(185, 29, 29, 0.3);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: radial-gradient(ellipse at center, var(--primary-red), transparent);
    opacity: 0.6;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-content p {
    margin: 0;
    color: var(--text-dark);
    font-family: 'Marcellus', serif;
    font-size: 14px;
}

.footer-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-navigation a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-navigation a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-navigation .separator {
    color: var(--border-dark);
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 13, 12, 0.98), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(15px);
    border-top: 3px solid rgba(185, 29, 29, 0.4);
    box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.9);
    padding: 30px 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 22px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.cookie-text p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
    font-family: 'Marcellus', serif;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 14px 32px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Marcellus', serif;
    border: 2px solid;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: var(--light-gold);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(185, 29, 29, 0.4);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, var(--primary-red), #ff3333);
    box-shadow: 0 6px 30px rgba(255, 51, 51, 0.6);
    border-color: var(--light-gold);
    transform: translateY(-2px);
}

.cookie-essential {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.cookie-essential:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.cookie-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Marcellus', serif;
}

.cookie-link:hover {
    color: var(--gold);
}


/* Contact Form */
.contact-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(185, 29, 29, 0.08);
    border-left: 4px solid var(--primary-red);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 20, 18, 0.6), rgba(15, 13, 12, 0.8));
    padding: 40px;
    border: 2px solid var(--border-dark);
    margin-bottom: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Marcellus', serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--border-dark);
    color: var(--text-light);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(15, 13, 12, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-privacy {
    margin-bottom: 30px;
    padding: 18px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-dark);
}

.form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
    font-family: 'Marcellus', serif;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: auto;
}

.form-privacy a {
    color: var(--gold);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.contact-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--dark-red), rgba(139, 0, 0, 0.9));
    color: var(--light-gold);
    border: 2px solid var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(185, 29, 29, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.contact-message {
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid;
}

.contact-message.success {
    background: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
    color: #2ecc71;
}

.contact-message.error {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post .post-thumbnail {
        min-height: 400px;
        border-right: none;
        border-bottom: 2px solid var(--border-dark);
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .site-header .container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(15, 13, 12, 0.98), rgba(10, 10, 10, 0.98));
        backdrop-filter: blur(20px);
        border-left: 2px solid rgba(212, 175, 55, 0.3);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
        padding: 80px 0 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 999;
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .site-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .site-nav ul li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .site-nav ul li:last-child {
        border-bottom: none;
    }
    
    .site-nav ul li a {
        text-align: left;
        padding: 18px 30px;
        font-size: 15px;
        letter-spacing: 3px;
        border: none;
    }
    
    .site-nav ul li a:hover {
        background: rgba(185, 29, 29, 0.1);
        border-left: 3px solid var(--primary-red);
        padding-left: 27px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .featured-post .post-title {
        font-size: 32px;
    }
    
    .featured-post-content {
        padding: 35px;
    }
    
    .single-post {
        padding: 35px;
    }
    
    .single-post .post-title {
        font-size: 36px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .diablo-logo {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .site-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .posts-grid {
        padding: 0 10px;
    }
    
    .post-title {
        font-size: 20px;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-navigation .separator {
        display: none;
    }
}

/* ==========================================
   COMMENTS SECTION - DIABLO IV STYLE
   ========================================== */

.comments-area {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.6), rgba(22, 18, 15, 0.4));
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--primary-red);
}

.comments-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-dark);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment-list .comment {
    background: rgba(10, 8, 7, 0.5);
    border: 1px solid var(--border-dark);
    border-left: 3px solid var(--dark-red);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment-list .comment:hover {
    border-left-color: var(--primary-red);
    background: rgba(15, 13, 12, 0.7);
    box-shadow: 0 0 30px rgba(185, 29, 29, 0.1);
}

.comment-list .children {
    list-style: none;
    margin-left: 40px;
    margin-top: 20px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 2px solid var(--dark-red);
    box-shadow: 0 0 10px rgba(185, 29, 29, 0.3);
}

.comment-author .fn {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--light-gold);
    font-style: normal;
}

.comment-metadata {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.comment-metadata a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-metadata a:hover {
    color: var(--gold);
}

.comment-content {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 15px;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--dark-red), rgba(139, 0, 0, 0.8));
    color: var(--light-gold);
    font-family: 'Marcellus', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(185, 29, 29, 0.5);
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(185, 29, 29, 0.4);
    color: #fff;
}

/* Comment Form */
.comment-respond {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.8), rgba(10, 8, 7, 0.6));
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--gold);
    padding: 30px;
    margin-top: 40px;
}

.comment-reply-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 8, 7, 0.6);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(15, 13, 12, 0.8);
    box-shadow: 0 0 15px rgba(185, 29, 29, 0.2);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 10px;
}

.form-submit input[type="submit"] {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--dark-red), rgba(139, 0, 0, 0.9));
    color: var(--light-gold);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(185, 29, 29, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.no-comments {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 30px;
}

.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.comment-navigation a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Marcellus', serif;
    transition: color 0.3s ease;
}

.comment-navigation a:hover {
    color: var(--light-gold);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
    border-left: 1px solid var(--border-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--dark-red), var(--primary-red));
    border: 2px solid var(--bg-black);
}

/* ==========================================
   BUILD GUIDE TEMPLATE
   ========================================== */

/* Build Hero */
.build-hero {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 3px solid var(--primary-red);
}

.build-hero-content {
    padding: 60px 20px;
}

.build-class {
    display: inline-block;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.build-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--light-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(185, 29, 29, 0.3);
    margin-bottom: 25px;
    line-height: 1.2;
}

.build-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.build-meta span {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    padding: 6px 16px;
    background: rgba(15, 13, 12, 0.8);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

.build-season {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.build-tier {
    border-color: var(--primary-red) !important;
    color: var(--primary-red) !important;
}

/* Build Layout */
.build-content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Sidebar Navigation */
.build-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.build-nav {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.8), rgba(22, 18, 15, 0.6));
    border: 1px solid var(--border-dark);
    border-left: 3px solid var(--gold);
    padding: 25px;
}

.build-nav h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.build-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.build-nav li {
    margin-bottom: 12px;
}

.build-nav a {
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
}

.build-nav a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 15px;
}

/* Build Sections */
.build-section {
    margin-bottom: 60px;
    scroll-margin-top: 20px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-dark);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Build Rating */
.rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.rating-item {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.6), rgba(22, 18, 15, 0.4));
    border: 1px solid var(--border-dark);
    border-left: 3px solid var(--dark-red);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.rating-item:hover {
    border-left-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(185, 29, 29, 0.2);
}

.rating-label {
    display: block;
    font-family: 'Marcellus', serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rating-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

/* Skills Overview */
.skills-overview {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.6), rgba(22, 18, 15, 0.4));
    border: 1px solid var(--border-dark);
    padding: 30px;
    margin-bottom: 30px;
}

.skills-overview h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.skill-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.skill-slot {
    text-align: center;
    padding: 15px;
    background: rgba(10, 8, 7, 0.5);
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.skill-slot:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.skill-key {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--dark-red);
    color: var(--light-gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border-radius: 3px;
    margin-bottom: 10px;
}

.skill-name {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Items Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.item-card {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.8), rgba(22, 18, 15, 0.6));
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.item-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.item-header {
    background: rgba(10, 8, 7, 0.6);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 20px;
}

.item-slot {
    font-family: 'Marcellus', serif;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.item-body {
    padding: 20px;
}

.item-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 12px;
}

.item-aspect {
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    color: var(--primary-red);
    font-style: italic;
    margin-bottom: 15px;
}

.item-stats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-stats li {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    border-bottom: 1px solid rgba(42, 37, 32, 0.3);
}

.item-stats li:last-child {
    border-bottom: none;
}

/* Skillbaum & Paragon Images */
.skillbaum-image,
.paragon-image {
    margin: 30px 0;
    text-align: center;
}

.skillbaum-image img,
.paragon-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--border-dark);
    box-shadow: 0 0 30px rgba(185, 29, 29, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .build-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .build-sidebar {
        position: static;
    }
    
    .build-nav {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .build-title {
        font-size: 32px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-red), #ff3333);
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: var(--light-gold);
}

::-moz-selection {
    background: var(--primary-red);
    color: var(--light-gold);
}

/* ==========================================
   BUILD ÜBERSICHT
   ========================================== */

.builds-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.build-overview-card {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.8), rgba(22, 18, 15, 0.6));
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--dark-red);
    transition: all 0.3s ease;
    overflow: hidden;
}

.build-overview-card:hover {
    border-top-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(185, 29, 29, 0.3);
    transform: translateY(-5px);
}

.build-card-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.9), rgba(22, 18, 15, 0.7));
}

.build-card-no-image {
    background: linear-gradient(135deg, 
        rgba(15, 13, 12, 0.9), 
        rgba(139, 0, 0, 0.2),
        rgba(22, 18, 15, 0.7));
}

.build-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.build-overview-card:hover .build-card-thumbnail img {
    transform: scale(1.1);
}

.build-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 8, 7, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.build-tier-badge {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gold);
    background: var(--primary-red);
    padding: 8px 16px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(185, 29, 29, 0.5);
}

.build-card-content {
    padding: 25px;
}

.build-card-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.build-card-title a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.build-card-title a:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.build-card-meta {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-dark);
}

.build-card-ratings {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.build-card-rating-item {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
}

.build-card-rating-item .rating-label {
    color: var(--text-muted);
}

.build-card-rating-item .rating-value {
    color: var(--gold);
    font-weight: 600;
}

.build-card-excerpt {
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.build-card-link {
    display: inline-block;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.build-card-link:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.no-builds-message {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.6), rgba(22, 18, 15, 0.4));
    border: 1px solid var(--border-dark);
    margin-top: 40px;
}

.no-builds-message p {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .builds-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .build-card-ratings {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================
   BUILD FILTERS
   ========================================== */

.build-filters {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.8), rgba(22, 18, 15, 0.6));
    border: 2px solid var(--border-dark);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 40px;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.filter-group select {
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    padding: 10px 12px;
    background: rgba(10, 8, 7, 0.8);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:hover {
    border-color: var(--gold);
    background: rgba(15, 13, 12, 0.9);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-button {
    font-family: 'Marcellus', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 0, 0, 0.3));
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.filter-button:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.filter-reset {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.filter-reset:hover {
    color: var(--gold);
}

/* Responsive Filter */
@media (max-width: 768px) {
    .build-filters {
        padding: 20px;
    }

    .filter-form {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
        width: 100%;
    }

    .filter-button {
        width: 100%;
    }
}

/* ==========================================
   D4BUILDS INTEGRATION
   ========================================== */

.d4builds-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-dark);
}

.d4builds-container {
    background: linear-gradient(135deg, rgba(15, 13, 12, 0.8), rgba(22, 18, 15, 0.6));
    border: 2px solid var(--border-dark);
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
}

.d4builds-build-card {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.2), 
        rgba(15, 13, 12, 0.9),
        rgba(212, 175, 55, 0.1));
    position: relative;
    overflow: hidden;
}

.d4builds-build-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.d4builds-icon {
    flex-shrink: 0;
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    position: relative;
    z-index: 1;
}

.d4builds-icon svg {
    display: block;
}

.d4builds-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.d4builds-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--light-gold);
    margin: 0 0 15px 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.d4builds-content p {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 25px 0;
}

.d4builds-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Marcellus', serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.2));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.d4builds-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
}

.d4builds-button:hover::before {
    width: 300px;
    height: 300px;
}

.d4builds-button:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(185, 29, 29, 0.3));
    border-color: var(--light-gold);
    color: var(--light-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.d4builds-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.d4builds-button:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 768px) {
    .d4builds-build-card {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .d4builds-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .d4builds-content h3 {
        font-size: 22px;
    }
    
    .d4builds-content p {
        font-size: 15px;
    }
    
    .d4builds-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* ===================================
   SOCIAL HUB PAGE
   =================================== */

.social-hub-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.social-hub-page .page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.social-hub-page .page-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 
        0 0 30px rgba(185, 29, 29, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.9);
}

.social-hub-page .page-subtitle {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Two Column Grid */
.social-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-column {
    background: linear-gradient(180deg, rgba(15, 13, 12, 0.95), rgba(10, 10, 10, 0.98));
    border: 2px solid rgba(185, 29, 29, 0.3);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.social-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.column-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.column-header h2 svg {
    color: var(--primary-red);
    filter: drop-shadow(0 0 8px rgba(185, 29, 29, 0.6));
}

.view-on-twitter {
    font-family: 'Marcellus', serif;
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-on-twitter:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Twitter Embed Styling */
.twitter-embed-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 6px;
    padding: 15px;
    min-height: 800px;
}

.twitter-timeline {
    width: 100% !important;
    height: 800px !important;
}

/* Twitter Plugin Placeholder */
.twitter-feed-placeholder {
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.05), rgba(10, 10, 10, 0.3));
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 40px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    max-width: 500px;
}

.placeholder-content svg {
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.placeholder-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.placeholder-content p {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.setup-steps {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 20px 20px 20px 40px;
    margin: 20px 0;
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.setup-steps li {
    margin-bottom: 8px;
}

.placeholder-content code {
    background: rgba(185, 29, 29, 0.2);
    color: var(--primary-red);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    border: 1px solid rgba(185, 29, 29, 0.3);
}

.placeholder-content .note {
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
    margin-top: 20px;
}


/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.05), rgba(10, 10, 10, 0.5));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.info-card:hover::before {
    left: 100%;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.2), rgba(139, 0, 0, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--gold);
}

.card-icon svg {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.info-card p {
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.placeholder-text {
    display: inline-block;
    font-family: 'Marcellus', serif;
    font-size: 12px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    background: rgba(185, 29, 29, 0.1);
    border: 1px solid rgba(185, 29, 29, 0.3);
    border-radius: 4px;
    font-weight: 600;
}

.placeholder-card {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Social Hub */
@media (max-width: 1200px) {
    .social-hub-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .twitter-column {
        order: 1;
    }
    
    .info-column {
        order: 2;
    }
}

@media (max-width: 768px) {
    .social-hub-page {
        padding: 100px 0 60px;
    }
    
    .social-hub-page .page-title {
        font-size: 36px;
    }
    
    .social-hub-page .page-subtitle {
        font-size: 14px;
    }
    
    .social-column {
        padding: 20px;
    }
    
    .column-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .column-header h2 {
        font-size: 20px;
    }
    
    .twitter-embed-wrapper {
        padding: 10px;
        min-height: 600px;
    }
    
    .twitter-timeline {
        height: 600px !important;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
    
    .info-card p {
        font-size: 14px;
    }
}

/* ===================================
   NEWS POST TEMPLATE
   =================================== */

.news-post {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.news-article .container {
    max-width: 900px;
}

/* News Header */
.news-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.3), rgba(139, 0, 0, 0.2));
    color: var(--primary-red);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(185, 29, 29, 0.4);
    font-family: 'Marcellus', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(185, 29, 29, 0.2);
}

.news-badge svg {
    filter: drop-shadow(0 0 4px rgba(185, 29, 29, 0.6));
}

.news-date {
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 20px 0;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

.news-excerpt {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

/* Featured Image */
.news-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(185, 29, 29, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.news-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.news-featured-image:hover img {
    transform: scale(1.02);
}

/* News Content */
.news-content {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 50px;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 40px 0 20px 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.news-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    color: var(--primary-red);
    margin: 30px 0 15px 0;
    text-shadow: 0 0 10px rgba(185, 29, 29, 0.3);
}

.news-content ul,
.news-content ol {
    margin: 20px 0 20px 30px;
}

.news-content li {
    margin-bottom: 10px;
}

.news-content strong {
    color: var(--gold);
}

.news-content a {
    color: var(--primary-red);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.news-content a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Weiterführende Links */
.news-links-section {
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.05), rgba(10, 10, 10, 0.5));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 30px;
    margin: 50px 0;
}

.links-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.links-title svg {
    color: var(--primary-red);
    filter: drop-shadow(0 0 8px rgba(185, 29, 29, 0.6));
}

.news-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-link-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
}

.news-link-card:hover::before {
    left: 100%;
}

.link-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.2), rgba(139, 0, 0, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
}

.news-link-card:hover .link-icon {
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.3), rgba(139, 0, 0, 0.2));
    transform: scale(1.1);
}

.link-text {
    font-family: 'Marcellus', serif;
    font-size: 15px;
    color: var(--text-dark);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.news-link-card:hover .link-text {
    color: var(--gold);
}

/* News Footer */
.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.news-tags {
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: var(--text-dark);
}

.tags-label {
    color: var(--gold);
    font-weight: 700;
    margin-right: 10px;
}

.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Marcellus', serif;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.back-to-news:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateX(-3px);
}

/* ===================================
   NEWS OVERVIEW PAGE
   =================================== */

.news-overview-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.news-overview-page .page-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-overview-page .page-title {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: 
        0 0 30px rgba(185, 29, 29, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.9);
}

.news-overview-page .page-title svg {
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.news-overview-page .page-subtitle {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: linear-gradient(180deg, rgba(15, 13, 12, 0.95), rgba(10, 10, 10, 0.98));
    border: 2px solid rgba(185, 29, 29, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.news-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.9), rgba(139, 0, 0, 0.8));
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Marcellus', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.news-card-content {
    padding: 25px;
}

.news-card-meta {
    font-family: 'Marcellus', serif;
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.news-card-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-title a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-title a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(185, 29, 29, 0.5);
}

.news-card-excerpt {
    font-family: 'Crimson Text', serif;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Marcellus', serif;
    font-size: 13px;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    color: var(--gold);
    gap: 12px;
}

.news-card-link svg {
    transition: transform 0.3s ease;
}

.news-card-link:hover svg {
    transform: translateX(3px);
}

/* No News State */
.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.no-news svg {
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.no-news h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.no-news p {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    color: var(--text-dark);
}

/* News Pagination */
.news-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.news-pagination a,
.news-pagination span {
    font-family: 'Marcellus', serif;
    font-size: 14px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.news-pagination .current {
    background: linear-gradient(135deg, rgba(185, 29, 29, 0.3), rgba(139, 0, 0, 0.2));
    border-color: var(--primary-red);
    color: var(--gold);
}

/* Responsive News */
@media (max-width: 768px) {
    .news-post {
        padding: 100px 0 60px;
    }
    
    .news-title {
        font-size: 32px;
    }
    
    .news-excerpt {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .news-content {
        font-size: 16px;
    }
    
    .news-content h2 {
        font-size: 24px;
    }
    
    .news-links-grid {
        grid-template-columns: 1fr;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-overview-page .page-title {
        font-size: 36px;
        flex-direction: column;
        gap: 15px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
