* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #5c1111 0%, #991b1b 25%, #680f0f 50%, #5c1111 100%);
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: min(90vw, 1200px);
    margin: 0 auto;
    padding: 0 clamp(1.5vw, 4vw, 2vw);
}

header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: clamp(8vh, 12vh, 10vh);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1vh, 2.5vh, 1.5vh) 0;
    flex-wrap: wrap;
    gap: clamp(1vh, 2.5vh, 1.5vh);
    height: 100%;
    position: relative;
}

.logo {
    font-size: clamp(2.5vh, 4vw, 3vh);
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: clamp(1vh, 2vw, 1.2vh);
    flex-shrink: 0;
    z-index: 1001;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.discord-icon {
    width: clamp(6vh, 9vw, 7vh);
    height: clamp(6vh, 9vw, 7vh);
    background-image: url('logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: high-quality;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .discord-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5vh;
    background: none;
    border: none;
    z-index: 1002;
    transition: all 0.3s ease;
    width: 4vh;
    height: 3vh;
    justify-content: space-between;
}

.hamburger-line {
    width: 3vh;
    height: 0.3vh;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 0.2vh;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.hamburger-menu.toggle .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-0.5vh, 0.8vh);
}

.hamburger-menu.toggle .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.toggle .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-0.5vh, -0.8vh);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80vw;
    max-width: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(220, 38, 38, 0.8));
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 15vh;
    gap: 3vh;
    transition: right 0.3s ease;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    display: flex;
}

.nav-links.nav-active {
    right: 0;
}

.nav-links li {
    width: 80%;
    text-align: center;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2vh;
    border-radius: 1vh;
    cursor: pointer;
    white-space: nowrap;
    font-size: 2.2vh;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 1200px) {
    .hamburger-menu {
        display: none;
    }
    
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        max-width: none;
        background: none;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding-top: 0;
        gap: clamp(1vh, 2vw, 3vh);
        box-shadow: none;
        border-left: none;
        right: 0;
    }
    
    .nav-links li {
        width: auto;
        text-align: left;
    }
    
    .nav-links li a {
        padding: clamp(0.8vh, 1.5vw, 1vh) clamp(1.5vh, 3vw, 2vh);
        border-radius: 2.5vh;
        font-size: clamp(1.8vh, 2.5vw, 2.2vh);
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        width: auto;
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        transform: translateY(-0.2vh);
    }
}

main {
    margin-top: clamp(10vh, 15vh, 12vh);
    flex: 1;
    padding-bottom: 2vh;
}

.page {
    display: none;
    padding: clamp(2vh, 3vw, 3vh) 0;
    min-height: calc(100vh - clamp(18vh, 25vh, 20vh));
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(2vh); }
    to { opacity: 1; transform: translateY(0); }
}

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: clamp(2vh, 4vw, 2.5vh);
    padding: clamp(3vh, 6vw, 6vh);
    text-align: center;
    margin-top: clamp(6vh, 6vw, 8vh);
    margin-bottom: clamp(2vh, 3vw, 3vh);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(4vh, 6vw, 6vh);
    margin-bottom: clamp(2vh, 4vw, 2.5vh);
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: clamp(2.2vh, 2.5vw, 2.8vh);
    color: rgba(255, 255, 255, 0.9);
    max-width: min(60vw, 90vw);
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(2vh, 4vw, 3vh);
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: clamp(1.5vh, 3vw, 2vh);
    padding: clamp(2vh, 4vw, 3vh);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    min-height: 200px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-1vh);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    color: white;
    margin-bottom: clamp(1.5vh, 3vw, 2vh);
    font-size: clamp(2.5vh, 3vw, 3vh);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .features {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
    }
    
    .feature-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
}

@media (min-width: 1200px) {
    .features {
        flex-direction: row;
        max-width: 1000px;
    }
}

.search-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: clamp(1.5vh, 3vw, 2vh);
    padding: clamp(2vh, 4vw, 4vh);
    margin-bottom: clamp(3vh, 5vw, 4vh);
    margin-top: clamp(8vh, 5vw, 8vh);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.search-container h2 {
    font-size: clamp(2.5vh, 4vw, 4vh);
    margin-bottom: clamp(2vh, 3vw, 2.5vh);
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    text-align: center;
}

.search-box {
    display: flex;
    gap: clamp(1.5vh, 2.5vw, 2vh);
    align-items: stretch;
    flex-wrap: wrap;
}

#searchInput {
    flex: 1;
    min-width: min(25vw, 100%);
    padding: clamp(1.5vh, 3vw, 2vh) clamp(2vh, 4vw, 2.5vh);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2.5vh;
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
    color: white;
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#searchInput:focus {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.search-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(1.5vh, 3vw, 2vh) clamp(2.5vh, 4vw, 3vh);
    border-radius: 2.5vh;
    cursor: pointer;
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    backdrop-filter: blur(10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-0.25vh);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(35vw, 100%), 1fr));
    gap: clamp(2vh, 4vw, 3vh);
}

.article-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: clamp(1.5vh, 3vw, 2vh);
    padding: clamp(2vh, 4vw, 3vh);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    transition: all 0.3s ease;
    opacity: 0;
}

.article-card:hover {
    transform: translateY(-0.5vh);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.15));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.article-card:hover::before {
    opacity: 1;
    top: -50%;
    left: -50%;
}

.article-card h3 {
    color: white;
    margin-bottom: clamp(1vh, 2vw, 1.5vh);
    font-size: clamp(2.2vh, 3vw, 2.8vh);
    line-height: 1.3;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.article-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1.5vh, 2vw, 1.8vh);
    margin-bottom: clamp(1.5vh, 2.5vw, 2vh);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.article-card p, .article-preview {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: clamp(1.5vh, 2.5vw, 2vh);
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    flex: 1;
    position: relative;
    z-index: 1;
}

.read-more {
    color: #ffffff;
    font-size: clamp(1.6vh, 2vw, 1.8vh);
    font-weight: 500;
    text-align: center;
    padding: clamp(0.8vh, 1.5vw, 1vh) clamp(1.5vh, 3vw, 2vh);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2vh;
    transition: all 0.5s ease;
    margin-top: auto;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.article-card:hover .read-more {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.article-image {
    width: 100%;
    height: clamp(12vh, 20vw, 18vh);
    border-radius: clamp(1vh, 2vw, 1.5vh);
    margin-bottom: clamp(1.5vh, 2.5vw, 2vh);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-modal.active {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: min(95vw, 80vw);
    max-height: min(90vh, 80vh);
    margin: max(5vh, 2vh) auto;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95));
    backdrop-filter: blur(20px);
    border-radius: clamp(2vh, 4vw, 2.5vh);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-5vh) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(2vh, 4vw, 3vh) clamp(2vh, 4vw, 4vh);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: clamp(1.5vh, 2.5vw, 2vh);
    flex-shrink: 0;
}

.modal-header h2 {
    color: white;
    font-size: clamp(2.5vh, 4vw, 4vh);
    margin: 0;
    flex: 1;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.modal-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: clamp(2.5vh, 4vw, 4vh);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: clamp(0.5vh, 1vw, 0.8vh) clamp(1vh, 2vw, 1.2vh);
    border-radius: 50%;
    transition: all 0.3s ease;
    width: clamp(4vh, 8vw, 5vh);
    height: clamp(4vh, 8vw, 5vh);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 100, 100, 0.3);
    color: #ff6666;
    border-color: #ff6666;
    box-shadow: 0 0 20px rgba(255, 102, 102, 0.3);
}

.modal-meta {
    padding: clamp(1.5vh, 3vw, 2vh) clamp(2vh, 4vw, 4vh);
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1.6vh, 2.5vw, 1.8vh);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.modal-image {
    width: 100%;
    height: clamp(15vh, 25vw, 25vh);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
    flex: 1;
    padding: clamp(2vh, 4vw, 4vh);
    overflow-y: auto;
    min-height: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.8));
}

.article-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.discord-spoiler {
    background: rgba(32, 34, 37, 1) !important;
    color: rgba(32, 34, 37, 1) !important;
    border-radius: 0.4vh;
    padding: 0.2vh 0.6vh;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    display: inline-block;
    position: relative;
    min-width: 2vh;
    min-height: 1.8vh;
    font-weight: 500;
    border: 0.1vh solid rgb(30, 31, 32);
}

.discord-spoiler:hover {
    background: rgba(41, 43, 47, 1) !important;
    border-color: rgba(114, 118, 125, 0.5);
    transform: scale(1.02);
    box-shadow: 0 0.2vh 0.5vh rgba(0, 0, 0, 0.3);
}

.discord-spoiler::before {
    content: "👁️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2vh;
    opacity: 0.3;
    transition: all 0.3s ease;
    pointer-events: none;
}

.discord-spoiler:hover::before {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
}

.discord-spoiler.revealed {
    background: rgba(32, 34, 37, 0.2) !important;
    color: #dcddde !important;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0.1vh 0.3vh rgba(255, 255, 255, 0.2);
}

.discord-spoiler.revealed::before {
    content: "";
    opacity: 0;
}

.discord-spoiler.revealed:hover {
    background: rgba(32, 34, 37, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes spoilerReveal {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.discord-spoiler.revealed {
    animation: spoilerReveal 0.3s ease-out;
}

.discord-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: clamp(1.4vh, 2vw, 1.6vh) !important;
    font-weight: 400 !important;
    margin: 1vh 0 !important;
    line-height: 1.3 !important;
    display: block !important;
    opacity: 0.8 !important;
}

.discord-main-title {
    color: #ffffff !important;
    font-size: clamp(2.5vh, 4vw, 3.5vh) !important;
    font-weight: 700 !important;
    margin: 2.5vh 0 2vh 0 !important;
    display: block !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.discord-section-title {
    color: #ffffff !important;
    font-size: clamp(2vh, 3vw, 2.8vh) !important;
    font-weight: 600 !important;
    margin: 2.2vh 0 1.5vh 0 !important;
    display: block !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.discord-list {
    margin: 1.2vh 0 !important;
    padding-left: clamp(2vh, 4vw, 2.5vh) !important;
    list-style: none !important;
}

.discord-list-item {
    margin: 0.6vh 0 !important;
    position: relative !important;
    padding-left: clamp(1.5vh, 3vw, 2vh) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.discord-list-item::before {
    content: "•" !important;
    color: #ffffff !important;
    font-weight: bold !important;
    position: absolute !important;
    left: 0 !important;
}

.discord-ordered-list {
    margin: 1.2vh 0 !important;
    padding-left: clamp(2vh, 4vw, 2.5vh) !important;
    list-style: decimal !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.discord-ordered-item {
    margin: 0.6vh 0 !important;
    padding-left: clamp(0.4vh, 1vw, 0.6vh) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.article-content .code-block {
    background: rgba(20, 20, 20, 0.8);
    color: #dcddde;
    padding: clamp(1.2vh, 3vw, 2vh);
    border-radius: clamp(0.8vh, 2vw, 1vh);
    margin: clamp(1.2vh, 2.5vw, 2vh) 0;
    overflow-x: auto;
    border-left: 0.4vh solid rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Courier New', Monaco, monospace;
    font-size: clamp(1.5vh, 2vw, 1.8vh);
    word-break: break-all;
    backdrop-filter: blur(10px);
}

.article-content .inline-code {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.2vh clamp(0.5vh, 1vw, 0.8vh);
    border-radius: 0.4vh;
    font-family: 'Courier New', Monaco, monospace;
    font-size: clamp(1.6vh, 2.2vw, 1.8vh);
    font-weight: 500;
    word-break: break-all;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content blockquote {
    border-left: 0.4vh solid rgba(255, 255, 255, 0.5);
    margin: clamp(1.2vh, 2.5vw, 2vh) 0;
    padding: clamp(1vh, 2vw, 1.2vh) clamp(1.5vh, 3vw, 2vh);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 clamp(0.8vh, 2vw, 1vh) clamp(0.8vh, 2vw, 1vh) 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    backdrop-filter: blur(10px);
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin: clamp(2vh, 4vw, 3vh) 0 clamp(1.2vh, 2.5vw, 2vh) 0;
    color: white;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.article-content h1 { 
    font-size: clamp(2.8vh, 5vw, 4vh); 
    color: #ffffff;
    border-bottom: 0.2vh solid rgba(255, 255, 255, 0.5);
    padding-bottom: clamp(0.5vh, 1vw, 1vh);
}
.article-content h2 { font-size: clamp(2.5vh, 4vw, 3.5vh); color: #ffffff; }
.article-content h3 { font-size: clamp(2.2vh, 3.5vw, 3vh); color: rgba(255, 255, 255, 0.9); }
.article-content h4 { font-size: clamp(2vh, 3vw, 2.5vh); color: rgba(255, 255, 255, 0.9); }
.article-content h5 { font-size: clamp(1.8vh, 2.8vw, 2.2vh); color: rgba(255, 255, 255, 0.9); }
.article-content h6 { font-size: clamp(1.6vh, 2.5vw, 2vh); color: rgba(255, 255, 255, 0.9); }

.article-content ul,
.article-content ol {
    margin: clamp(1.2vh, 2.5vw, 2vh) 0;
    padding-left: clamp(2.5vh, 5vw, 4vh);
}

.article-content li {
    margin-bottom: clamp(0.5vh, 1vw, 1vh);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.article-content p {
    margin-bottom: clamp(1.2vh, 2.5vw, 2vh);
}

.article-content a {
    color: #66ccff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    word-break: break-all;
    hyphens: auto;
    text-shadow: 0 0 10px rgba(102, 204, 255, 0.3);
}

.article-content a:hover {
    text-decoration: underline;
    color: #99ddff;
    text-shadow: 0 0 15px rgba(153, 221, 255, 0.5);
}

.discord-separator {
    border: none !important;
    height: 0.2vh !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent) !important;
    margin: clamp(2vh, 4vw, 3vh) 0 !important;
    border-radius: 0.1vh !important;
}

.discord-emoji {
    color: #ffd700 !important;
    font-weight: 500 !important;
    padding: 0.1vh 0.2vh !important;
    border-radius: 0.3vh !important;
    background: rgba(255, 215, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}

.discord-emoji:hover {
    background: rgba(255, 215, 0, 0.2) !important;
    transform: scale(1.1) !important;
}

.discord-mention {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 0.1vh 0.4vh !important;
    border-radius: 0.3vh !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.discord-mention:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-0.1vh) !important;
}

.discord-channel {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 0.1vh 0.4vh !important;
    border-radius: 0.3vh !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.discord-channel:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-0.1vh) !important;
}

.loading-message, .error-message, .no-results, .no-articles {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: clamp(1.5vh, 3vw, 2vh);
    padding: clamp(2.5vh, 5vw, 5vh);
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.loading-message {
    animation: loadingPulse 1.5s ease-in-out infinite !important;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.error-message {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.3), rgba(255, 100, 100, 0.1));
    border: 1px solid rgba(255, 100, 100, 0.4);
}

.retry-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(1vh, 2vw, 1.2vh) clamp(2vh, 3vw, 2.5vh);
    border-radius: 2.5vh;
    cursor: pointer;
    margin-top: clamp(1.2vh, 2.5vw, 2vh);
    transition: all 0.3s ease;
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    backdrop-filter: blur(10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.retry-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-0.25vh);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-container {
    margin-top: clamp(8vh, 5vw, 8vh);
    max-width: min(95vw, 60vw);
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border-radius: clamp(1.5vh, 3vw, 2vh);
    padding: clamp(2.5vh, 5vw, 4vh);
    text-align: center;
    margin-top: clamp(8vh, 5vw, 8vh);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: clamp(8vh, 15vw, 15vh);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    color: white;
    margin-bottom: clamp(1.2vh, 2.5vw, 2vh);
    font-size: clamp(2.2vh, 3vw, 3.5vh);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(1vh, 2vw, 1.2vh);
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    word-break: break-word;
    hyphens: auto;
}

.dev-contact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(1.2vh, 2.5vw, 2vh) clamp(2.5vh, 4vw, 3vh);
    border-radius: 2.5vh;
    cursor: pointer;
    font-size: clamp(1.8vh, 2.5vw, 2.2vh);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    margin-bottom: clamp(2vh, 3vw, 2.5vh);
    display: inline-block;
    backdrop-filter: blur(10px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.dev-contact:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-0.2vh);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    text-align: center;
    padding: clamp(2vh, 3vw, 2.5vh) 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.5vh, 2vw, 1.8vh);
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.modal-body::-webkit-scrollbar {
    width: clamp(0.8vh, 1.5vw, 1vh);
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.4vh;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.4vh;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.3);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.article-card,
.feature-card,
.nav-links li a,
.search-btn,
.retry-btn,
.discord-spoiler,
.discord-emoji,
.discord-mention,
.discord-channel {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes articleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(2vh) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.article-card {
    animation: articleFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.sr-only {
    position: absolute;
    width: 0.1vh;
    height: 0.1vh;
    padding: 0;
    margin: -0.1vh;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 0.3vh solid rgba(255, 255, 255, 0.8);
    outline-offset: 0.2vh;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 0.3vh solid rgba(255, 255, 255, 0.8);
    outline-offset: 0.2vh;
}

.discord-spoiler:focus-visible {
    outline: 0.2vh solid rgba(255, 255, 255, 0.8) !important;
    outline-offset: 0.2vh !important;
    box-shadow: 0 0 0 0.4vh rgba(255, 255, 255, 0.3) !important;
}

.hamburger-menu:focus-visible {
    outline: 0.3vh solid rgba(255, 255, 255, 0.8);
    outline-offset: 0.2vh;
}

@media (max-width: 480px) {
    body {
        font-size: 2vh;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #450a0a 100%);
    }
    
    .container {
        padding: 0 2vw;
    }
    
    header {
        height: 8vh;
        background: rgba(0, 0, 0, 0.4);
    }
    
    main {
        margin-top: 8vh;
    }
    
    .logo {
        font-size: 2vh;
    }
    
    .discord-icon {
        width: 5vh;
        height: 5vh;
    }
    
    .hamburger-menu {
        width: 3vh;
        height: 2.5vh;
    }
    
    .hamburger-line {
        width: 2.5vh;
        height: 0.25vh;
    }
    
    .nav-links {
        width: 85vw;
        padding-top: 12vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(220, 38, 38, 0.9));
    }
    
    .nav-links li a {
        padding: 1.5vh;
        font-size: 2vh;
        background: rgba(255, 255, 255, 0.1);
    }

    .search-box {
        flex-direction: column;
        gap: 1.2vh;
    }
    
    #searchInput {
        min-width: auto;
        width: 100%;
        background: rgba(255, 255, 255, 0.2);
    }

    .search-btn {
        width: 100%;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2vh;
    }
    
    .features {
        flex-direction: column;
        gap: 2vh;
    }
    
    .feature-card {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
    
    .modal-content {
        margin: 1vh;
        max-height: calc(100vh - 2vh);
        border-radius: 1.5vh;
        width: calc(100vw - 2vh);
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(40, 40, 40, 0.98));
    }
    
    .modal-header {
        padding: 1.5vh;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .modal-header h2 {
        font-size: 2.2vh;
    }
    
    .modal-close {
        width: 3.5vh;
        height: 3.5vh;
        font-size: 2.5vh;
    }
    
    .modal-body {
        padding: 1.5vh;
    }
    
    .hero {
        padding: 2vh;
        margin-bottom: 2vh;
    }
    
    .hero h1 {
        font-size: 3vh;
    }
    
    .hero p {
        font-size: 1.8vh;
    }
    
    .discord-spoiler {
        padding: 0.3vh 0.8vh !important;
        min-width: 3vh !important;
        min-height: 2.2vh !important;
    }
    
    .discord-spoiler::before {
        font-size: 1.5vh !important;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .features {
        flex-direction: column;
        gap: 2.5vh;
    }
    
    .feature-card {
        max-width: 500px;
        width: 100%;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vh;
    }
    
    .modal-content {
        width: 90vw;
        margin: 2vh auto;
    }
    
    .search-box {
        gap: 1.5vh;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .features {
        flex-direction: column;
        max-width: 600px;
    }
    
    .feature-card {
        width: 100%;
        max-width: 500px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 85vw;
        max-width: 70vw;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 85vw;
    }
    
    .features {
        max-width: 1000px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero {
        max-width: 75vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 4vh;
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .container {
        max-width: 90vw;
    }
    
    .features {
        max-width: 1000px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 85vw;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero {
        max-width: 70vw;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 6vh;
    }
    
    .hero h1 {
        font-size: 7vh;
    }
    
    .hero p {
        font-size: 2.8vh;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 85vw;
    }
    
    .features {
        max-width: 1200px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 80vw;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero {
        max-width: 65vw;
        padding: 8vh 6vw;
    }
    
    .hero h1 {
        font-size: 8vh;
    }
    
    .hero p {
        font-size: 3vh;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    main {
        margin-top: 8vh;
    }
    
    .hero {
        padding: 2vh 2.5vw;
        margin-bottom: 2vh;
    }
    
    .hero h1 {
        font-size: 2.8vh;
        margin-bottom: 1vh;
    }
    
    .hero p {
        font-size: 1.8vh;
    }
    
    .features {
        margin: 2vh 0;
        gap: 2vh;
    }
    
    .feature-card {
        padding: 2vh;
        min-height: 15vh;
    }
    
    .feature-card h3 {
        font-size: 2vh;
        margin-bottom: 1vh;
    }
    
    .feature-card p {
        font-size: 1.6vh;
    }
    
    .modal-content {
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-header {
        padding: 1.5vh 2.5vh;
    }
    
    .modal-body {
        padding: 2vh 2.5vh;
    }
    
    footer {
        padding: 1.2vh 0;
        margin-top: 2vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .article-card:hover,
    .feature-card:hover,
    .nav-links li a:hover,
    .search-btn:hover,
    .retry-btn:hover,
    .discord-spoiler:hover,
    .discord-emoji:hover,
    .discord-mention:hover,
    .discord-channel:hover {
        transform: none !important;
    }
    
    .hamburger-menu.toggle .hamburger-line:nth-child(1),
    .hamburger-menu.toggle .hamburger-line:nth-child(2),
    .hamburger-menu.toggle .hamburger-line:nth-child(3) {
        transform: none !important;
    }
    
    .nav-links {
        transition: none !important;
    }
    
    #searchInput:focus {
        transform: none;
    }
    
    .modal-content {
        animation: none;
    }
    
    .fadeIn {
        animation: none;
    }
    
    .modalSlideIn {
        animation: none;
    }
    
    .loading-message {
        animation: none !important;
    }
    
    .article-card {
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    body {
        background: linear-gradient(135deg, #cc0000 0%, #800000 100%);
    }
    
    .hero {
        background: rgba(0, 0, 0, 0.6);
        border: 0.2vh solid rgba(255, 255, 255, 0.8);
    }
    
    .feature-card,
    .article-card,
    .search-container {
        background: rgba(0, 0, 0, 0.5);
        border: 0.2vh solid rgba(255, 255, 255, 0.6);
    }
    
    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(0, 0, 0, 0.8);
        border: 0.2vh solid #ffffff;
    }
    
    .search-btn,
    .retry-btn {
        background: rgba(0, 0, 0, 0.8);
        border: 0.2vh solid #ffffff;
    }
    
    .modal-content {
        background: rgba(10, 10, 10, 0.98);
        border: 0.3vh solid rgba(255, 255, 255, 0.8);
    }
    
    .hamburger-line {
        background-color: #ffffff;
    }
}

@media (prefers-color-scheme: dark) {
    .article-content .discord-spoiler.revealed {
        color: #dcddde !important;
    }
    
    .modal-content {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(30, 30, 30, 0.98)) !important;
    }
    
    .modal-header h2,
    .article-content {
        color: #dcddde !important;
    }
    
    .modal-meta {
        color: #b9bbbe !important;
    }
}

@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }
    
    body {
        background: white !important;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    header,
    nav,
    footer,
    .search-container,
    .modal-close,
    .hamburger-menu {
        display: none !important;
    }
    
    main {
        margin-top: 0;
    }
    
    .article-content {
        font-size: 11pt;
        line-height: 1.4;
    }
    
    .article-content h1,
    .article-content h2,
    .article-content h3,
    .article-content h4,
    .article-content h5,
    .article-content h6 {
        break-after: avoid;
        margin-top: 24pt;
        margin-bottom: 12pt;
    }
    
    .article-content p {
        margin-bottom: 12pt;
    }
    
    .article-content a {
        color: black;
        text-decoration: underline;
    }
    
    .article-content .code-block {
        background: #f5f5f5 !important;
        color: black !important;
        border: 1pt solid #ccc !important;
        padding: 8pt;
        font-size: 9pt;
        break-inside: avoid;
    }
    
    .article-card {
        border: 1pt solid #ccc;
        break-inside: avoid;
        margin-bottom: 12pt;
        padding: 12pt;
    }
}

@supports (-webkit-touch-callout: none) {
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-body {
        -webkit-overflow-scrolling: touch;
    }
    
    #searchInput {
        -webkit-appearance: none;
        border-radius: 2.5vh;
    }
    
    .search-btn,
    .retry-btn,
    .hamburger-menu {
        -webkit-appearance: none;
    }
    
    .discord-spoiler {
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .article-card,
    .feature-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .nav-links {
        -webkit-overflow-scrolling: touch;
    }
}

@supports not (backdrop-filter: blur(1vh)) {
    header {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .hero,
    .feature-card,
    .article-card,
    .search-container {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .modal-content {
        background: rgba(20, 20, 20, 0.98);
    }
    
    .nav-links {
        background: rgba(0, 0, 0, 0.95);
    }
}

@supports not (font-size: clamp(1rem, 4vw, 2rem)) {
    .hero h1 { font-size: 4vh; }
    .hero p { font-size: 2.2vh; }
    .feature-card h3 { font-size: 2.8vh; }
    .feature-card p { font-size: 2vh; }
    .article-card h3 { font-size: 2.5vh; }
    .article-content { font-size: 2vh; }
    .nav-links li a { font-size: 2vh; }
    #searchInput { font-size: 2vh; }
    .search-btn { font-size: 2vh; }
    .logo { font-size: 2.5vh; }
}