:root {
    --primary-color: #8f05e4;
    --secondary-color: #3ea8d2;
    --accent-color: #73ece8;
    --dark-bg: #0c0d12;
    --darker-bg: #08090e;
    --light-bg: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.55);
    --shadow-xl: 0 25px 60px rgba(5, 5, 10, 0.55);
    --shadow-lg: 0 18px 40px rgba(5, 5, 12, 0.45);
    --shadow-md: 0 12px 28px rgba(5, 5, 15, 0.4);
    --container-width: 1160px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: radial-gradient(800px 400px at 20% 75%, rgba(115, 236, 232, 0.06) 0%, transparent 55%),
                radial-gradient(600px 350px at 80% 65%, rgba(163, 108, 255, 0.05) 0%, transparent 50%),
                linear-gradient(180deg, #0f1118 0%, var(--dark-bg) 50%, #0d0e14 100%);
    color: var(--text-primary);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(100% - 2.5rem, var(--container-width));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    box-shadow: 0 15px 35px rgba(143, 5, 228, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(143, 5, 228, 0.4);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: radial-gradient(500px 200px at 25% 60%, rgba(115, 236, 232, 0.04) 0%, transparent 65%), var(--dark-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    animation: headerFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

@keyframes headerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.header-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(143, 5, 228, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 168, 210, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
    animation: gridMove 20s linear infinite;
    transition: opacity 0.3s ease;
}

.header-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.header-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
}

.header-orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(143, 5, 228, 0.6), rgba(143, 5, 228, 0.2) 50%, transparent 70%);
    top: -50%;
    left: 10%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.header-orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(62, 168, 210, 0.5), rgba(62, 168, 210, 0.2) 50%, transparent 70%);
    top: -30%;
    right: 15%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    position: relative;
    z-index: 1;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    animation: brandFadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes brandFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.2), rgba(62, 168, 210, 0.2));
    display: grid;
    place-items: center;
    padding: 4px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 1rem;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.hero {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(143, 5, 228, 0.3) 5%, 
        rgba(62, 168, 210, 0.3) 50%, 
        rgba(143, 5, 228, 0.3) 95%, 
        transparent 100%);
    z-index: 1;
    width: 100%;
    pointer-events: none;
}

.latest {
    margin-top: 0;
    padding-top: 0;
    overflow: visible;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(143, 5, 228, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 168, 210, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(143, 5, 228, 0.8), rgba(143, 5, 228, 0.3) 50%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(62, 168, 210, 0.7), rgba(62, 168, 210, 0.3) 50%, transparent 70%);
    top: 60%;
    right: 15%;
    animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(115, 236, 232, 0.6), rgba(115, 236, 232, 0.2) 50%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation: orbFloat3 18s ease-in-out infinite;
}

.orb-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(143, 5, 228, 0.6), rgba(143, 5, 228, 0.2) 50%, transparent 70%);
    top: 30%;
    right: 5%;
    animation: orbFloat4 14s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, 30px) scale(1.15);
    }
}

@keyframes orbFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -30px) scale(1.2);
    }
}

@keyframes orbFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 25px) scale(1.1);
    }
}

.hero-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(143, 5, 228, 0.4), rgba(62, 168, 210, 0.4), transparent);
    height: 2px;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(143, 5, 228, 0.3);
}

.line-1 {
    width: 40%;
    top: 25%;
    left: 10%;
    transform: rotate(15deg);
    animation: lineMove1 8s ease-in-out infinite;
}

.line-2 {
    width: 35%;
    bottom: 30%;
    right: 15%;
    transform: rotate(-20deg);
    animation: lineMove2 10s ease-in-out infinite;
}

.line-3 {
    width: 30%;
    top: 55%;
    left: 50%;
    transform: rotate(10deg);
    animation: lineMove3 12s ease-in-out infinite;
}

@keyframes lineMove1 {
    0%, 100% {
        opacity: 0.4;
        transform: rotate(15deg) translateX(0);
    }
    50% {
        opacity: 0.8;
        transform: rotate(15deg) translateX(20px);
    }
}

@keyframes lineMove2 {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(-20deg) translateX(0);
    }
    50% {
        opacity: 0.7;
        transform: rotate(-20deg) translateX(-15px);
    }
}

@keyframes lineMove3 {
    0%, 100% {
        opacity: 0.5;
        transform: rotate(10deg) translateX(0);
    }
    50% {
        opacity: 0.9;
        transform: rotate(10deg) translateX(25px);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    animation: heroContentEnter 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes heroContentEnter {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: heroVisualEnter 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: scale(0.8) translateX(-30px);
}

@keyframes heroVisualEnter {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

.hero-logo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    animation: logoPulse 4s ease-in-out infinite 1.3s;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.logo-ring {
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(143, 5, 228, 0.3);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

.logo-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(62, 168, 210, 0.2);
    border-radius: 50%;
    animation: ringRotateReverse 15s linear infinite 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes ringRotateReverse {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-360deg);
        opacity: 1;
    }
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    position: relative;
    animation: heroTextEnter 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes heroTextEnter {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(143, 5, 228, 0.3) 10%,
        rgba(143, 5, 228, 1) 50%,
        rgba(143, 5, 228, 0.3) 90%,
        transparent 100%);
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.5s forwards;
    box-shadow: 0 0 10px rgba(143, 5, 228, 0.5);
    transform-origin: center;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(143, 5, 228, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(143, 5, 228, 0.5));
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
        left: 0;
    }
    100% {
        width: 60%;
        left: 0;
    }
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 500px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.85;
        transform: translateY(0);
    }
}

.section-header {
    padding: 4rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 520px;
}

.link-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.link-all:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}

.featured {
    padding: 0 0 4rem;
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    padding: 2.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.12), rgba(62, 168, 210, 0.12));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-card:hover::after {
    opacity: 1;
}

.featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.25), rgba(62, 168, 210, 0.25));
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-content h3 {
    font-size: 2rem;
    line-height: 1.4;
}

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-container.horizontal {
    position: relative;
    padding: 4rem 0 4rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -2px;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
}

.timeline-container.horizontal .post-card {
    user-select: text;
    -webkit-user-select: text;
}

.timeline-container.horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(143, 5, 228, 0.3) 0%, 
        rgba(62, 168, 210, 0.3) 50%, 
        rgba(143, 5, 228, 0.3) 100%);
    z-index: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    pointer-events: none;
}

.timeline-container.horizontal::-webkit-scrollbar {
    display: none;
}

.timeline-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0 0.5rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: -5rem auto 0;
}

.timeline-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-dot:hover {
    background: rgba(115, 236, 232, 0.4);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

.timeline-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(115, 236, 232, 0.5);
    transform: scale(1.3);
}

.timeline-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.timeline-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(115, 236, 232, 0.2), rgba(143, 5, 228, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(115, 236, 232, 0.6);
    color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(115, 236, 232, 0.3);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.post-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 60px;
    justify-content: center;
}

.post-counter #currentPostNum {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.post-counter #totalPosts {
    color: var(--text-muted);
}

.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, rgba(115, 236, 232, 0.15), rgba(143, 5, 228, 0.15));
    border: 1px solid rgba(115, 236, 232, 0.3);
    border-radius: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, rgba(115, 236, 232, 0.25), rgba(143, 5, 228, 0.25));
    border-color: rgba(115, 236, 232, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(115, 236, 232, 0.2);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

.timeline-fade-left,
.timeline-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.timeline-fade-left {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(10, 10, 10, 0.4) 0%, 
        rgba(10, 10, 10, 0.2) 30%,
        transparent 100%);
    opacity: 0;
}

.timeline-fade-right {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(10, 10, 10, 0.4) 0%, 
        rgba(10, 10, 10, 0.2) 30%,
        transparent 100%);
    opacity: 0.3;
}

.timeline-container.horizontal.scrolled-left .timeline-fade-left {
    opacity: 0.5;
}

.timeline-container.horizontal.scrolled-right .timeline-fade-right {
    opacity: 0;
}


.timeline-posts.horizontal {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    padding: 0 max(4rem, calc((100vw - 1200px) / 2 + 4rem)) 2rem;
    align-items: flex-start;
    min-width: max-content;
}

.timeline-post {
    position: relative;
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    padding-bottom: 30px;
    margin-bottom: 20px;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    filter: blur(2px);
    transform: scale(0.95) translateY(10px);
    animation: cardEnter 0.6s ease-out forwards;
    animation-delay: calc(var(--index) * 0.1s);
    opacity: 0;
    will-change: transform, opacity, filter;
}

@keyframes cardEnter {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
        filter: blur(8px);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.95) translateY(10px);
        filter: blur(2px);
    }
}

.timeline-post.visible {
    animation: cardBecomeVisible 0.5s ease-out forwards;
}

.timeline-post.scrolling {
    transition-duration: 0.3s;
}

.timeline-post.center-focused {
    transform: scale(1.05) translateY(-5px) !important;
    z-index: 5;
    opacity: 1 !important;
    filter: blur(0) !important;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.timeline-post.center-focused .post-card {
    box-shadow: 0 20px 60px rgba(115, 236, 232, 0.45), 
                0 0 40px rgba(143, 5, 228, 0.35),
                0 0 0 2px rgba(115, 236, 232, 0.3),
                inset 0 0 30px rgba(115, 236, 232, 0.1);
    border-color: rgba(115, 236, 232, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.timeline-post.center-focused .post-card::before {
    display: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes cardBecomeVisible {
    0% {
        transform: scale(0.95) translateY(10px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.timeline-post::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid rgba(143, 5, 228, 0.6);
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-post::after {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    width: 16px;
    height: 16px;
    background-image: url('src/white-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0;
}

.timeline-post.center-focused::before {
    width: 28px;
    height: 28px;
    top: -1.25rem;
    border-color: var(--accent-color);
    border-width: 2px;
    z-index: 3;
    box-shadow: 0 0 15px rgba(115, 236, 232, 0.5);
}

.timeline-post.center-focused::after {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
    top: calc(-1.25rem + 14px);
    width: 18px;
    height: 18px;
    z-index: 2;
}


.post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    will-change: transform, box-shadow;
}

.post-card.selected {
    border-color: rgba(115, 236, 232, 0.5);
    box-shadow: 0 8px 30px rgba(115, 236, 232, 0.3), 
                0 0 20px rgba(143, 5, 228, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(115, 236, 232, 0.1), rgba(115, 236, 232, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.post-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(115, 236, 232, 0.3), 0 0 20px rgba(115, 236, 232, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.timeline-post:hover .post-card {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 12px 40px rgba(115, 236, 232, 0.3), 0 0 20px rgba(115, 236, 232, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.post-card:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, rgba(115, 236, 232, 0.15), rgba(115, 236, 232, 0.08));
}

.post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.post-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.post-card:hover .post-title {
    color: var(--accent-color);
}

.post-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.post-tags span {
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

/* Üst kısım: konu içeriği (ayrı pill'lar) */
.post-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.post-topics span {
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    color: var(--primary-color);
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.35);
}

/* Alt kısım: etiketler + yazar */
.post-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.post-footer .post-tags {
    margin-bottom: 0;
}

.post-author {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.post-link:hover {
    gap: 0.75rem;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.timeline-container.horizontal.scrolled .scroll-indicator {
    opacity: 0;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
}

.scroll-hint i {
    font-size: 1.2rem;
    color: var(--accent-color);
    animation: slide-horizontal 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slide-horizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0.7;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.post-card:hover .read-more {
    gap: 0.7rem;
    color: var(--primary-color);
}

.filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    background: rgba(5, 5, 12, 0.6);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill.active,
.filter-pill:hover {
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.35), rgba(62, 168, 210, 0.35));
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: 0 12px 28px rgba(143, 5, 228, 0.3);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-bottom: 3rem;
    color: var(--text-secondary);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 12, 0.7);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.topics-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.topic-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: none;
    cursor: pointer;
    width: 100%;
}

.topic-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.topic-card:hover h3 {
    color: var(--accent-color);
}

.topic-icon {
    display: none;
}

.topic-card h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    flex: 1;
    text-align: left;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.topic-card p {
    display: none;
}

.topic-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    opacity: 0.6;
}

.tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.35rem;
    border-radius: 999px;
}

.tab {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.tab.active {
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.35), rgba(62, 168, 210, 0.35));
    color: var(--text-primary);
}

.popular-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.popular-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: var(--transition);
}

.popular-card:hover {
    transform: translateY(-10px);
    border-color: rgba(143, 5, 228, 0.35);
    box-shadow: var(--shadow-md);
}

.popular-rank {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.popular-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.newsletter {
    padding: 6rem 0;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.18), rgba(62, 168, 210, 0.18));
    border: 1px solid rgba(143, 5, 228, 0.25);
    border-radius: 28px;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
}

.newsletter-text {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.newsletter-text ul {
    display: grid;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.newsletter-text li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 12, 0.75);
    color: var(--text-primary);
    padding: 0 1.2rem;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(115, 236, 232, 0.2);
}

.newsletter-form small {
    color: var(--text-muted);
    font-size: 0.8rem;
}


/* Logos Section */
.logos-section {
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.logos-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: nowrap;
    min-height: 120px;
    width: 100%;
}

.logos-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.partner-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.4s ease;
    display: block;
    margin: 0;
    vertical-align: middle;
}

/* Sibervatan logosu için özel stil - küçük olduğu için boyutu artırıldı */
.partner-logo[src*="sibervatan"] {
    height: 180px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
}

/* YILDIZ logosu için özel stil - Sibervatan logosu ile dengeli görünüm */
.partner-logo[src*="YILDIZ.png"] {
    height: 180px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    transform: translateY(-8px);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo[src*="YILDIZ.png"]:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Footer */
.footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    opacity: 0.7;
}

.social-links a i {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free";
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.social-links a .social-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: translateY(-1px);
}

.social-links a:hover .social-icon-img {
    opacity: 1;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-1px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@keyframes matrixMove {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-120px) rotate(1deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-wrapper {
        width: 200px;
        height: 200px;
    }

    .hero-text {
        text-align: center;
    }

    .hero p {
        margin: 0 auto;
        max-width: 100%;
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .timeline-container.horizontal {
        padding: 3rem 0 1.5rem;
        margin-left: calc(-50vw + 50%);
    }
    
    .timeline-posts.horizontal {
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .timeline-post {
        min-width: 280px;
        max-width: 320px;
    }
    
    .post-card {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .post-excerpt {
        font-size: 0.85rem;
    }
    
    .popular-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .logos-section {
        padding: 40px 0;
    }
    
    .logos-section .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .logos-container {
        gap: 20px;
        min-height: 110px;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
        overflow: visible;
    }
    
    .logos-container a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        flex-shrink: 1;
    }
    
    .partner-logo {
        height: 100px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        flex-shrink: 1;
        display: block;
        margin: 0;
        vertical-align: middle;
    }
    
    /* Sibervatan logosu için özel stil - mobil: küçük olduğu için boyutu artırıldı */
    .partner-logo[src*="sibervatan"] {
        height: 100px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
    }
    
    /* YILDIZ logosu için özel stil - mobil: Sibervatan ile dengeli görünüm */
    .partner-logo[src*="YILDIZ.png"] {
        height: 100px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        transform: translateY(-5px);
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-text ul {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(5, 5, 12, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1.2rem;
        display: grid;
        gap: 1rem;
        min-width: 200px;
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.open {
        transform: scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-container.horizontal {
        padding: 2.5rem 0 1rem;
        margin-left: calc(-50vw + 50%);
    }
    
    .timeline-posts.horizontal {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .timeline-post {
        min-width: 260px;
        max-width: 280px;
    }
    
    .timeline-post::before {
        width: 12px;
        height: 12px;
        top: -0.75rem;
    }
    
    .timeline-navigation {
        padding: 1.5rem 0 0.5rem;
        gap: 1rem;
    }
    
    .timeline-progress {
        max-width: 100%;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .page-info {
        font-size: 0.9rem;
        min-width: 70px;
    }
    
    .page-info #currentPostNum {
        font-size: 1.1rem;
    }
    
    .post-card {
        padding: 1.25rem;
        margin-top: 0.75rem;
    }
    
    .post-title {
        font-size: 1.1rem;
    }
    
    .post-excerpt {
        font-size: 0.8rem;
    }
    
    .post-date {
        font-size: 0.7rem;
    }
    
    .popular-list {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        gap: 0.5rem;
    }
    
    .topic-card {
        padding: 0.6rem 0.9rem;
    }
    
    .topic-card h3 {
        font-size: 0.8rem;
    }
    
    .timeline-navigation {
        padding: 2rem 0 1rem;
        gap: 1.5rem;
        margin-top: -2rem;
    }
    
    .timeline-dots {
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-pagination {
        gap: 1rem;
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .page-info {
        font-size: 0.85rem;
        min-width: 60px;
    }
    
    .page-info #currentPostNum {
        font-size: 1rem;
    }
    
    .view-all-container {
        margin-top: 1rem;
    }
    
    .view-all-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-inner {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    body {
        line-height: 1.7;
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-logo-wrapper {
        width: 160px;
        height: 160px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filters {
        justify-content: flex-start;
    }

    .newsletter-inner {
        padding: 2rem;
    }
    
    .logos-section {
        padding: 30px 0;
    }
    
    .logos-section .container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
    }
    
    .logos-container {
        gap: 15px;
        min-height: 100px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        overflow: visible;
    }
    
    .logos-container a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 90px;
        flex-shrink: 1;
    }
    
    .partner-logo {
        height: 90px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        flex-shrink: 1;
        display: block;
        margin: 0;
        vertical-align: middle;
    }
    
    /* YILDIZ logosu için özel stil - küçük mobil: Sibervatan ile dengeli görünüm */
    .partner-logo[src*="YILDIZ.png"] {
        height: 90px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        transform: translateY(-4px);
    }
    
    /* Sibervatan logosu için küçük mobil */
    .partner-logo[src*="sibervatan"] {
        height: 90px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
    }
}

