* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    position: relative;
}
.views-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: -0.2px;
    opacity: 0.7;
}
.eye-icon {
    display: inline-flex;
    align-items: center;
    transform: translateY(-1px) translateX(8px);
}
.views-count {
    display: inline-block;
    transform: translateY(0px) translateX(10px);
}
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 48px 24px;
}
.post-card {
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 32px;
    text-align: center;
}
.post-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.post-title {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.post-date {
    font-size: 0.75rem;
    opacity: 0.45;
    margin-bottom: 20px;
    font-feature-settings: 'tnum';
}
.post-text {
    line-height: 1.65;
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 20px;
}
.post-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.post-image:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 0 25px 8px rgb(255, 255, 255) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.container > p {
    text-align: center;
    opacity: 0.5;
    margin-top: 64px;
}
.post-tags {
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: -0.2px;
}
.logo {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-45%);
    font-size: 1.7rem;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.2s;
    pointer-events: none;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 20px;
    object-fit: cover;
}
.video-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px 8px rgb(255, 255, 255);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    pointer-events: none;
}
#scrollTopBtn.show {
    opacity: 1;
    pointer-events: auto;
}
#scrollTopBtn:hover {
    background: #333;
    transform: scale(1.08);
}
.logo {
    transition: transform 0.2s ease, opacity 0.2s ease;
    pointer-events: auto;
    cursor: pointer;
}
.logo:hover {
    transform: translateY(-45%) rotate(3deg) scale(1.05);
    opacity: 1;
}
.eye-icon {
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}
.eye-icon:hover {
    transform: translateY(-1px) translateX(8px) scale(1.05);
    filter: brightness(1.2);
}
.eye-icon {
    animation: eyePop 0.4s ease-out;
}
@keyframes logoBounce {
    0% {
        transform: translateY(-45%) scale(0.8) rotate(-5deg);
        opacity: 0;
    }
    60% {
        transform: translateY(-45%) scale(1.1) rotate(3deg);
    }
    100% {
        transform: translateY(-45%) scale(1) rotate(0deg);
        opacity: 1;
    }
}
@keyframes eyePop {
    0% {
        transform: translateY(-1px) translateX(8px) scale(0.8);
        opacity: 0;
        filter: brightness(0.8);
    }
    60% {
        transform: translateY(-1px) translateX(8px) scale(1.1);
        filter: brightness(1.3);
    }
    100% {
        transform: translateY(-1px) translateX(8px) scale(1);
        opacity: 1;
        filter: brightness(1);
    }
}