 :root {
            --footer-bg: #1a1a1a;
            --transition: all 0.3s ease;
            --accent-color: #ff2e63;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            background-color: #f5f6f5;
            color: #1a1a1a;
            line-height: 1.6;
            width: 100%;
        }

        /* Hero Section */
        .hero-container {
            width: 100%;
            max-width: 1440px;
            height: 500px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            filter: brightness(0.6);
            z-index: 1;
        }

        .hero-headline {
            position: relative;
            z-index: 2;
            color: #ffffff;
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            padding: 20px;
            letter-spacing: -0.02em;
            max-width: 80%;
        }

        /* Content Wrapper */
        .content-wrapper {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .main-content {
            flex: 2;
            min-width: 280px;
            width: 100%;
        }

        .side-panel {
            flex: 1;
            min-width: 280px;
            width: 100%;
            max-height: calc(100vh - 100px);
            overflow-y: auto;
            padding-right: 4px;
        }

        /* Custom Scrollbar for Side Panel */
        .side-panel::-webkit-scrollbar {
            width: 8px;
        }

        .side-panel::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 4px;
        }

        .side-panel::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        .side-panel::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .side-panel {
            scrollbar-color: #333 #1a1a1a;
            scrollbar-width: thin;
        }

        /* Advertisements */
        .leaderboard-ad, .rectangle-ad {
            width: 100%;
            margin-bottom: 24px;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .leaderboard-ad:hover, .rectangle-ad:hover {
            transform: scale(1.02);
        }

        .leaderboard-ad {
            height: 100px;
        }

        .rectangle-ad {
            height: 260px;
        }

        .leaderboard-ad img, .rectangle-ad img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Article */
        .article-content {
            background: #ffffff;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            width: 100%;
        }

        .article-content:hover {
            transform: translateY(-4px);
        }

        .article-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #1a1a1a;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .article-content p {
            line-height: 1.8;
            margin-bottom: 16px;
            color: #2d3748;
            font-size: 1rem;
        }

        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 16px 0;
            object-fit: cover;
        }

        /* Share Buttons */
        .social-share {
            position: relative;
            margin-top: 20px;
            text-align: center;
            width: 100%;
        }

        .share-toggle {
            padding: 10px 20px;
            background: transparent;
            border: 2px solid transparent;
            border-image: linear-gradient(135deg, #5e3eff, #ff2e63) 1;
            color: #1a1a1a;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: auto;
            min-width: 150px;
            justify-content: center;
        }

        .share-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, rgba(94, 62, 255, 0.1), rgba(255, 46, 99, 0.1));
        }

        .share-toggle:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(94, 62, 255, 0.3);
        }

        .share-toggle i {
            font-size: 1.1rem;
        }

        .share-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            padding: 10px;
            z-index: 10;
            width: 90%;
            max-width: 240px;
            opacity: 0;
            transform: translateX(-50%) translateY(10px);
            transition: var(--transition);
        }

        .social-share:hover .share-menu {
            display: block;
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .share-menu a, .share-menu button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            color: #2d3748;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 8px;
            transition: var(--transition);
            background: transparent;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: left;
        }

        .share-menu a:hover, .share-menu button:hover {
            background: #f0f2f5;
        }

        .share-menu i {
            font-size: 1.1rem;
        }

        .share-copy .copy-feedback {
            display: none;
            position: absolute;
            right: 10px;
            background: #1a1a1a;
            color: #fff;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .share-copy.copied .copy-feedback {
            display: block;
        }

        /* Upcoming Releases and Pre-Order Spotlight */
        .upcoming-releases, .pre-order-spotlight {
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            margin-bottom: 24px;
            position: relative;
            width: 100%;
        }

        .pre-order-spotlight {
            background: linear-gradient(145deg, #ffffff, #f0e6ff);
        }

        .upcoming-releases h3, .pre-order-spotlight h3 {
            font-size: 1.6rem;
            margin-bottom: 16px;
            color: #1a1a1a;
            font-weight: 700;
        }

        .game-list {
            list-style: none;
            width: 100%;
        }

        .game-list-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 12px;
            background: linear-gradient(145deg, #f8f9fa, #ffffff);
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .pre-order-spotlight .game-list-item {
            background: linear-gradient(145deg, #f5f0ff, #ffffff);
        }

        .game-list-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .game-list-item.hidden {
            display: none;
        }

        .game-list-item img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .game-info {
            flex: 1;
        }

        .game-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .game-meta {
            font-size: 0.8rem;
            color: #6b7280;
            line-height: 1.4;
        }

        .game-meta span {
            display: block;
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            color: #ffffff;
            padding: 12px;
            opacity: 0;
            transform: translateY(100%);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }

        .game-list-item:hover .game-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .pre-order-btn {
            display: inline-block;
            margin-top: 8px;
            padding: 6px 12px;
            background: linear-gradient(135deg, #ff2e63, #5e3eff);
            color: #ffffff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .pre-order-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .show-more {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 36px;
            height: 36px;
            margin: 12px auto 0;
            background: linear-gradient(135deg, #5e3eff, #ff2e63);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            outline: none;
        }

        .show-more:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, #6e4eff, #ff4b7a);
        }

        .show-more:focus {
            box-shadow: 0 0 0 3px rgba(94, 62, 255, 0.3);
        }

        .arrow-down {
            font-size: 1rem;
            transition: var(--transition);
        }

        .show-more.expanded .arrow-down {
            transform: rotate(180deg);
        }

        .loading-spinner {
            display: none;
            text-align: center;
            padding: 16px;
            color: #6b7280;
            font-size: 0.85rem;
        }

        .loading-spinner::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #5e3eff;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Comment and Ad Section */
        .comment-ad-container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .disqus-section {
            flex: 2;
            min-width: 280px;
            width: 100%;
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .disqus-error {
            color: #ff2e63;
            font-size: 0.9rem;
            text-align: center;
            padding: 10px;
        }

        /* Footer */
        .site-footer {
            background: var(--footer-bg);
            color: #fff;
            padding: 30px 0;
            margin-top: 30px;
            border-radius: 10px;
            width: 100%;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-layout {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
            padding: 0 20px;
        }

        .footer-brand {
            flex: 0 0 300px;
        }

        .footer-brand a {
            display: block;
        }

        .footer-brand img {
            max-width: 180px;
            filter: brightness(0) invert(1);
            transition: var(--transition);
        }

        .footer-brand img:hover {
            transform: scale(1.05);
        }

        .footer-nav {
            flex: 1;
        }

        .footer-nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            list-style: none;
        }

        .footer-nav li {
            margin-right: 20px;
        }

        .footer-nav a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-nav a:hover {
            color: var(--accent-color);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .content-wrapper, .comment-ad-container {
                padding: 16px;
            }

            .hero-container {
                height: 400px;
            }

            .hero-headline {
                font-size: 2.2rem;
            }

            .article-content h2 {
                font-size: 1.8rem;
            }

            .game-list-item img {
                width: 80px;
                height: 80px;
            }

            .share-menu {
                max-width: 220px;
            }

            .side-panel {
                max-height: calc(100vh - 80px);
            }

            .site-footer {
                padding: 20px 0;
            }

            .footer-layout {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                height: 320px;
            }

            .hero-headline {
                font-size: 1.8rem;
            }

            .content-wrapper, .comment-ad-container {
                flex-direction: column;
                padding: 12px;
            }

            .leaderboard-ad {
                height: 80px;
            }

            .rectangle-ad {
                height: 200px;
            }

            .game-list-item img {
                width: 60px;
                height: 60px;
            }

            .game-title {
                font-size: 0.95rem;
            }

            .game-meta {
                font-size: 0.75rem;
            }

            .share-menu {
                width: 100%;
                max-width: none;
                left: 0;
                transform: none;
                padding: 8px;
            }

            .side-panel {
                max-height: calc(100vh - 60px);
            }

            .footer-brand {
                flex: 0 0 100%;
                text-align: center;
            }

            .footer-nav ul {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                height: 240px;
            }

            .hero-headline {
                font-size: 1.4rem;
                padding: 12px;
            }

            .leaderboard-ad {
                height: 60px;
            }

            .rectangle-ad {
                height: 160px;
            }

            .article-content {
                padding: 16px;
            }

            .article-content h2 {
                font-size: 1.5rem;
            }

            .article-content p {
                font-size: 0.9rem;
            }

            .game-list-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            .game-list-item img {
                width: 100%;
                height: 120px;
                margin-bottom: 10px;
                margin-right: 0;
            }

            .pre-order-btn {
                width: 100%;
                text-align: center;
                padding: 8px;
            }

            .show-more {
                width: 32px;
                height: 32px;
            }

            .arrow-down {
                font-size: 0.9rem;
            }

            .share-toggle {
                padding: 8px 16px;
                font-size: 0.85rem;
                min-width: 120px;
            }

            .share-menu a, .share-menu button {
                padding: 8px 12px;
                font-size: 0.85rem;
            }

            .share-menu i {
                font-size: 1rem;
            }

            .upcoming-releases h3, .pre-order-spotlight h3 {
                font-size: 1.4rem;
            }

            .game-overlay {
                font-size: 0.8rem;
                padding: 8px;
            }

            .disqus-section {
                padding: 16px;
            }

            .side-panel {
                max-height: calc(100vh - 40px);
                padding-right: 2px;
            }

            .site-footer {
                padding: 15px 0;
            }

            .footer-layout {
                flex-direction: column;
                gap: 15px;
                padding: 0 12px;
            }

            .footer-brand img {
                max-width: 140px;
            }

            .footer-nav ul {
                gap: 10px;
            }

            .footer-nav a {
                font-size: 0.8rem;
            }

            .footer-nav li {
                margin-right: 10px;
            }
        }