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

:root {
    /* Colors */
    --background: #050505;
    --paper-black: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent-rgb: 0, 255, 255;
    /* Cyan base for RGB */
    --accent-secondary-rgb: 255, 0, 255;
    /* Magenta base */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --padding-xs: 0.5rem;
    --padding-sm: 1rem;
    --padding-md: 2rem;
    --padding-lg: 4rem;

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Social Icons */
.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    border-color: currentColor;
}

.social-icon-btn.yt:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.social-icon-btn.ig:hover {
    color: #d62976;
    background: rgba(214, 41, 118, 0.1);
    border-color: rgba(214, 41, 118, 0.4);
    box-shadow: 0 0 10px rgba(214, 41, 118, 0.2);
}

/* RGB Ambient Background */
.rgb-ambient-background {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.03), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-secondary-rgb), 0.03), transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: ambientShift 20s infinite alternate ease-in-out;
}

@keyframes ambientShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-2%, -2%);
    }
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-sm) var(--padding-md);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.highlight {
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.logo-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--text-primary), transparent);
    margin-left: 0.5rem;
    transform: rotate(20deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-primary);
}

.main-nav a::after {
    /* Underline effect */
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-secondary-rgb), 1));
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.user-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--background);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    padding: var(--padding-lg) var(--padding-md);
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(120deg, var(--text-primary) 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Subtle holographic effect on text hover */
.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 2px;
    width: 100%;
    color: rgba(var(--accent-rgb), 0.5);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
    filter: blur(4px);
}

.hero-title:hover .gradient-text::before {
    opacity: 1;
    left: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.card-content {
    background: var(--paper-black);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* ensure z-index context */
    z-index: 1;
}

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

.card-content h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.recent-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.recent-list li:hover {
    padding-left: 0.5rem;
    border-color: rgba(var(--accent-rgb), 0.3);
}

.recent-list li:last-child {
    border-bottom: none;
}

.game-title {
    font-weight: 600;
}

.patch-version {
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Forum Preview Section */
.forum-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.view-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.view-all:hover {
    color: var(--text-primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--paper-black);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* ensure z-index context */
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Subtle rainbow glow on hover */
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-secondary-rgb), 1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.category-card:hover .card-icon {
    filter: grayscale(0%);
}

.category-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.post-count {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Featured Patch */
.featured-patch {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border-radius: 16px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--glass-border);
    position: relative;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--paper-black);
    border-top: 1px solid var(--glass-border);
    padding: 3rem var(--padding-md);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — FULL MOBILE SUPPORT
   ═══════════════════════════════════════════════════════════ */

/* ── HAMBURGER MENU BUTTON ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── TABLET: max-width 1200px ── */
@media (max-width: 1200px) {
    :root {
        --padding-md: 1.5rem;
    }

    main {
        padding: 1.5rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-patch {
        grid-template-columns: 1fr;
    }

    .interaction-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .like-container {
        position: static;
    }
}

/* ── MOBILE: max-width 768px ── */
@media (max-width: 768px) {
    :root {
        --padding-md: 1rem;
        --padding-lg: 1.5rem;
    }

    /* HAMBURGER: show button, hide nav */
    .mobile-menu-btn {
        display: block;
    }

    .main-header {
        padding: 0.6rem 1rem;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1050;
        padding-top: 80px;
        overflow-y: auto;
    }

    .main-nav.mobile-open {
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 2rem;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem !important;
        text-align: center;
    }

    /* LOGO */
    .logo {
        font-size: 1.4rem;
    }

    .logo-line {
        height: 18px;
    }

    /* USER ACTIONS (social icons & online badge) */
    .user-actions {
        gap: 6px !important;
    }

    .social-icon-btn {
        width: 28px !important;
        height: 28px !important;
    }

    #liveUserBadge {
        padding: 3px 8px !important;
        font-size: 0.7rem !important;
    }

    /* MAIN CONTENT */
    main {
        padding: 1rem;
        gap: 1.5rem;
    }

    /* HERO */
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    /* CARDS */
    .card-content {
        padding: 1.2rem;
    }

    .category-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .category-card {
        padding: 1.2rem;
    }

    .category-card h4 {
        font-size: 0.9rem;
    }

    /* FEATURED */
    .featured-patch {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-content h3 {
        font-size: 1.6rem;
    }

    .featured-content p {
        font-size: 0.95rem;
    }

    /* SECTION HEADERS */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-header h3 {
        font-size: 1.3rem;
    }

    /* FOOTER */
    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* BUTTONS */
    .btn-primary,
    .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    /* INTERACTION SECTION */
    .interaction-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .like-container {
        position: static;
    }

    .comment-system {
        padding: 1.5rem;
        border-radius: 14px;
    }

    /* TABLE-LIKE ELEMENTS */
    .forum-table,
    .thread-table {
        font-size: 0.85rem;
    }

    .forum-table td,
    .thread-table td {
        padding: 0.8rem 0.5rem;
    }
}

/* ── SMALL MOBILE: max-width 480px ── */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .hero-title,
    .gradient-text {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .category-cards-grid {
        grid-template-columns: 1fr;
    }

    .featured-content h3 {
        font-size: 1.3rem;
    }

    main {
        padding: 0.8rem;
    }

    .card-content {
        padding: 1rem;
    }

    .section-header h3 {
        font-size: 1.1rem;
    }

    .btn-primary,
    .btn-outline,
    .btn-lg {
        width: 100%;
        text-align: center;
    }

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

/* Spotlight Effect - appended */
.spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

.category-card:hover .spotlight,
.visual-card:hover .spotlight,
.card-content:hover .spotlight {
    opacity: 1;
}

/* Glow Effect for Featured Image */
.featured-image {
    width: 100%;
    height: 300px;
    background: #000;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Interaction & Comments Section */
.interaction-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.interaction-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .interaction-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Like System - Enhanced */
.like-container {
    position: sticky;
    top: 100px;
}

.like-box {
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.1), rgba(20, 20, 20, 0.8));
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.like-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 20, 147, 0.6);
}

.like-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.like-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 60%);
    opacity: 0;
    transform: scale(0);
    transition: 0.5s;
}

.like-btn:active::after {
    opacity: 1;
    transform: scale(2);
    transition: 0s;
}

.like-btn:hover {
    background: rgba(255, 20, 147, 0.2);
    border-color: #ff1493;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

.like-btn.liked {
    background: #ff1493;
    border-color: #ff1493;
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.6);
    animation: heartBeat 0.5s;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.like-count {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.interaction-status {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.4;
    transition: 0.4s;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-item.done {
    opacity: 1;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    font-weight: 600;
}

/* Comment System - Redesigned */
.comment-system {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comment-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.015);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.c-input,
.c-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}

.c-input:focus,
.c-textarea:focus {
    outline: none;
    border-color: cyan;
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.post-btn {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: flex-end;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.post-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

.comments-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comment-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.c-user {
    font-weight: 700;
    color: cyan;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.c-user::before {
    content: '👤';
    font-size: 0.8rem;
}

.c-date {
    color: #666;
    font-size: 0.8rem;
}

.c-text {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

/* Scrollbar styling */
.comments-list::-webkit-scrollbar {
    width: 8px;
}

.comments-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

/* Disabled Download Button Styles */
.download-btn.locked {
    background: #333;
    color: #888;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.download-btn.locked::after {
    content: '🔒';
    margin-left: 10px;
}

.download-btn.unlocked {
    background: linear-gradient(135deg, #00ff88, #00aa55);
    color: #000;
    animation: unlockPulse 0.5s ease-out;
}

@keyframes unlockPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   WIDE INTERACTION SYSTEM (V2)
   ========================================= */

.interaction-wrapper {
    background: transparent;
    padding: 0 1rem 4rem 1rem;
    animation: fadeIn 0.8s ease;
}

.interaction-section {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.interaction-container-wide {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .interaction-container-wide {
        flex-direction: column;
        gap: 3rem;
    }
}

/* LEFT COLUMN: LIKE */
.like-column {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 50px;
}

.like-box-large {
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.15), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.like-box-large:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
}

.like-btn-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 3.5rem;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.like-btn-large:hover {
    background: rgba(255, 20, 147, 0.2);
    transform: scale(1.1);
}

.like-btn-large.liked {
    background: #ff1493;
    border-color: #ff1493;
    box-shadow: 0 0 30px #ff1493;
    animation: heartBeat 0.5s;
}

.like-count-large {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.like-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-panel {
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-item.done {
    color: #00ff88;
    font-weight: 700;
}

.status-item.done .status-icon {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

/* RIGHT COLUMN: COMMENTS */
.comment-column {
    flex: 1;
    width: 100%;
}

.comment-form-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.c-input-wide,
.c-textarea-wide {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    margin-bottom: 1rem;
    transition: 0.3s;
}

.c-input-wide:focus,
.c-textarea-wide:focus {
    outline: none;
    border-color: cyan;
    background: rgba(0, 255, 255, 0.05);
}

.post-btn-wide {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, #0cebeb, #20e3b2);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.post-btn-wide:hover:not(:disabled) {
    box-shadow: 0 0 30px rgba(32, 227, 178, 0.4);
    transform: translateY(-2px);
}

.post-btn-wide:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
}

/* WIDE COMMENTS LIST */
.comments-list-wide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item-wide {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    padding-left: 2rem;
    transition: 0.3s;
}

.comment-item-wide:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.cw-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.cw-user {
    color: cyan;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.cw-date {
    color: #666;
}

.cw-text {
    color: #ddd;
    line-height: 1.6;
    font-size: 1.05rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}