    /* 3단 구성 게임 스트리머 종합 포털 스타일 */
    
    /* 페이지 스크롤 위치 강제 초기화 */
    html, body {
        scroll-behavior: auto !important;
        scroll-padding-top: 0 !important;
    }
    
    /* 종합 스트리머 포털 타이틀바 */
    .portal-title-banner {
        width: 100%;
        background: 
            linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(118, 75, 162, 0.6) 100%),
            url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 2rem 0;
        margin: 0 0 0.5rem 0;
        position: relative;
        overflow: hidden;
    }

    .portal-title-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%),
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        background-size: cover, 200px 200px, 300px 300px;
        opacity: 1;
    }


    /* 새로운 긴 박스 섹션 */
    .extended-content-section {
        width: 100%;
        background: #f8f9fa;
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .extended-container {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .extended-section {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 2rem; /* 원래 간격으로 복구 */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
    }

    .extended-section:last-child {
        margin-bottom: 0;
    }

    .extended-section .section-header {
        margin-bottom: 2rem;
        border-bottom: 2px solid #f8f9fa;
        padding-bottom: 1rem;
    }

    .extended-section .section-header h2 {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
    }

    .partner-streamers-extended .section-header {
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }

    .partner-streamers-extended .section-header h2 {
        font-size: 2.5rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin: 0 0 1rem 0 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.8) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    .partner-streamers-extended .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #6b46c1, transparent);
        border-radius: 2px;
    }

    .partner-streamers-extended .view-all {
        color: #6b46c1 !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        position: relative;
        z-index: 2;
    }

    .partner-streamers-extended .view-all:hover {
        color: #ffffff !important;
        text-shadow: 0 0 10px rgba(107, 70, 193, 0.8) !important;
        transform: translateX(5px) !important;
    }

    /* 파트너 스트리머 확장 섹션 */
    .partner-streamers-extended {
        background: linear-gradient(135deg, #2d1b69 0%, #4a2c7a 25%, #6b46c1 50%, #4a2c7a 75%, #2d1b69 100%);
        border-radius: 20px;
        padding: 2rem 2rem;
        margin: 1rem 0 2rem 0;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(107, 70, 193, 0.4), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .partner-streamers-extended::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(75, 0, 130, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        pointer-events: none;
        animation: premiumGlow 8s ease-in-out infinite alternate;
    }

    @keyframes premiumGlow {
        0% {
            opacity: 0.8;
            transform: scale(1);
        }
        100% {
            opacity: 1;
            transform: scale(1.02);
        }
    }

    .partner-streamers-extended .partner-streamers-grid {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        gap: 1rem;
        max-width: 100%;
        overflow-x: auto;
        padding: 2rem 0;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .partner-streamers-extended .streamer-card {
        background: linear-gradient(135deg, 
                    rgba(255, 255, 255, 0.95) 0%, 
                    rgba(248, 249, 255, 0.9) 25%, 
                    rgba(240, 240, 255, 0.85) 50%, 
                    rgba(248, 249, 255, 0.9) 75%, 
                    rgba(255, 255, 255, 0.95) 100%) !important;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 8px 32px rgba(107, 70, 193, 0.15),
                    0 4px 16px rgba(74, 44, 122, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8),
                    inset 0 -1px 0 rgba(107, 70, 193, 0.1),
                    0 0 0 1px rgba(107, 70, 193, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        border: 1px solid rgba(107, 70, 193, 0.2);
        min-width: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 320px;
        backdrop-filter: blur(20px);
    }

    .partner-streamers-extended .streamer-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(135deg, 
                    transparent 47%, 
                    rgba(255, 255, 255, 0.2) 49%, 
                    rgba(255, 255, 255, 1) 50%, 
                    rgba(255, 255, 255, 0.2) 51%, 
                    transparent 53%);
        border-radius: 20px;
        pointer-events: none;
        opacity: 1;
        animation: diagonalShimmer 5s ease-in-out infinite;
        z-index: 1;
    }

    @keyframes diagonalShimmer {
        0% {
            transform: translateX(-150%) translateY(-150%);
            opacity: 0;
        }
        5% {
            opacity: 1;
        }
        95% {
            opacity: 1;
        }
        100% {
            transform: translateX(150%) translateY(150%);
            opacity: 0;
        }
    }
    
    @keyframes premiumShimmer {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
            opacity: 0;
        }
    }
    
    @keyframes shimmer {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }
    
    @keyframes glossyShine {
        0% {
            opacity: 0.4;
            transform: translateX(-10px);
        }
        100% {
            opacity: 0.8;
            transform: translateX(10px);
        }
    }

    .partner-streamers-extended .streamer-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 100px 20px at 20% 30%, 
                rgba(255, 255, 255, 0.6) 0%, 
                rgba(255, 255, 255, 0.1) 30%,
                transparent 60%),
            radial-gradient(ellipse 80px 15px at 80% 70%, 
                rgba(255, 255, 255, 0.5) 0%, 
                rgba(255, 255, 255, 0.1) 25%,
                transparent 50%);
        border-radius: 20px;
        pointer-events: none;
        opacity: 0.8;
        animation: premiumGlow 3.5s ease-in-out infinite alternate;
        z-index: 1;
    }

    @keyframes premiumGlow {
        0% {
            opacity: 0.4;
            transform: scale(1) rotate(0deg);
        }
        50% {
            opacity: 0.9;
            transform: scale(1.01) rotate(1deg);
        }
        100% {
            opacity: 0.6;
            transform: scale(1.02) rotate(-1deg);
        }
    }
    
    @keyframes glowPulse {
        0% {
            opacity: 0.7;
            transform: scale(1);
        }
        100% {
            opacity: 1;
            transform: scale(1.03);
        }
    }
    
    @keyframes sparkle {
        0% {
            opacity: 0.3;
            transform: scale(0.8);
        }
        100% {
            opacity: 0.8;
            transform: scale(1.2);
        }
    }

    .partner-streamers-extended .streamer-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 48px rgba(107, 70, 193, 0.25),
                    0 8px 24px rgba(74, 44, 122, 0.3),
                    0 0 0 1px rgba(107, 70, 193, 0.3),
                    0 0 20px rgba(107, 70, 193, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9),
                    inset 0 -1px 0 rgba(107, 70, 193, 0.15);
        border-color: rgba(107, 70, 193, 0.3);
        background: linear-gradient(135deg, 
                    rgba(255, 255, 255, 1) 0%, 
                    rgba(248, 249, 255, 0.95) 25%, 
                    rgba(240, 240, 255, 0.9) 50%, 
                    rgba(248, 249, 255, 0.95) 75%, 
                    rgba(255, 255, 255, 1) 100%) !important;
    }

    .partner-streamers-extended .streamer-card:hover::before {
        opacity: 1;
    }

    .partner-streamers-extended .partner-streamer-avatar-container {
        position: fixed !important;
        top: 2rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100px !important;
        height: 100px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10 !important;
    }

    .partner-streamer-avatar-container img {
        width: 95px !important;
        height: 95px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        object-position: center !important;
        border: 3px solid rgba(255, 255, 255, 0.3) !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3), 
                    0 0 0 1px rgba(255, 255, 255, 0.2),
                    0 0 15px rgba(107, 70, 193, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .partner-streamers-extended .streamer-card:hover .partner-streamer-avatar-container img {
        border-color: rgba(255, 255, 255, 0.6) !important;
        box-shadow: 0 12px 35px rgba(107, 70, 193, 0.4), 
                    0 0 0 2px rgba(255, 255, 255, 0.4),
                    0 0 25px rgba(107, 70, 193, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
        transform: translate(-50%, -50%) scale(1.03) !important;
    }

    .partner-streamers-extended .partner-streamer-info-container {
        position: absolute !important;
        bottom: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.4rem !important;
        min-height: 80px !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .partner-streamer-name {
        font-size: 1rem !important;
        font-weight: 900 !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin: 0 !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        text-align: center !important;
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3), 
                     0 0 8px rgba(102, 126, 234, 0.4) !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        display: block !important;
        width: 100% !important;
        max-height: 3.6em;
        overflow: visible;
        letter-spacing: 0.5px !important;
    }

    .partner-streamer-followers {
        font-size: 0.9rem !important;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin: 0 !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        text-align: center !important;
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4), 
                     0 0 6px rgba(255, 107, 107, 0.3) !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        display: block !important;
        width: 100% !important;
        letter-spacing: 0.3px !important;
    }

    .partner-streamer-channel-type {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0.1rem 0 0 0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        line-height: 1.0 !important;
        letter-spacing: 0.3px !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, #6b46c1 0%, #4c1d95 100%) !important;
        box-shadow: 0 2px 4px rgba(107, 70, 193, 0.3) !important;
        display: inline-block !important;
        text-align: center !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        width: auto !important;
    }
    
    /* 치지직 스타일 */
    .partner-streamer-channel-type[data-type="치지직"] {
        background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%) !important;
        box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3) !important;
    }
    
    /* 유튜브 스타일 */
    .partner-streamer-channel-type[data-type="유튜브"],
    .partner-streamer-channel-type[data-type="YouTube"] {
        background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%) !important;
        box-shadow: 0 2px 4px rgba(255, 0, 0, 0.3) !important;
    }
    
    /* 숲 스타일 */
    .partner-streamer-channel-type[data-type="숲"] {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%) !important;
        box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3) !important;
    }
    
    /* 트위치 스타일 */
    .partner-streamer-channel-type[data-type="트위치"],
    .partner-streamer-channel-type[data-type="Twitch"] {
        background: linear-gradient(135deg, #9146ff 0%, #772ce8 100%) !important;
        box-shadow: 0 2px 4px rgba(145, 70, 255, 0.3) !important;
    }

    .streamer-link {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        color: #bdc3c7;
        font-size: 0.7rem;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .streamer-link:hover {
        color: #3498db;
    }

    /* 커뮤니티 확장 섹션 */
    .community-extended .post-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        grid-template-rows: repeat(2, auto);
    }

    /* 서버 확장 섹션 */
    .servers-extended .servers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* 개발 프로젝트 확장 섹션 */
    .development-extended .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    /* 주요 서비스 확장 섹션 */
    .services-extended .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* 협찬사 섹션 */
    .sponsors-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 2px solid #dee2e6;
    }

    .section-subtitle {
        font-size: 0.9rem;
        color: #6c757d;
        font-weight: 400;
    }

    .sponsors-container {
        position: relative;
        overflow: hidden;
        padding: 2rem 0;
    }

    .sponsors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .sponsor-card {
        background: white;
        border-radius: 16px;
        padding: 1.2rem 0.8rem;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        animation: float 6s ease-in-out infinite;
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    .sponsor-card:nth-child(odd) {
        animation-delay: 0s;
    }

    .sponsor-card:nth-child(even) {
        animation-delay: 3s;
    }

    .sponsor-card:nth-child(3n) {
        animation-delay: 1.5s;
    }

    .sponsor-card:nth-child(4n) {
        animation-delay: 4.5s;
    }

    .sponsor-card:nth-child(5n) {
        animation-delay: 2s;
    }

    .sponsor-card:nth-child(6n) {
        animation-delay: 5s;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        25% {
            transform: translateY(-10px) rotate(1deg);
        }
        50% {
            transform: translateY(-5px) rotate(0deg);
        }
        75% {
            transform: translateY(-15px) rotate(-1deg);
        }
    }

    .sponsor-card:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        animation-play-state: paused;
        text-decoration: none;
        color: inherit;
    }

    .sponsor-logo {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sponsor-name {
        font-size: 0.95rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sponsor-tag {
        font-size: 0.7rem;
        color: #6c757d;
        background: #f8f9fa;
        padding: 0.2rem 0.4rem;
        border-radius: 10px;
        display: inline-block;
        line-height: 1.2;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    /* 각 회사별 색상 테마 */
    .sponsor-card.google .sponsor-logo { color: #4285f4; }
    .sponsor-card.microsoft .sponsor-logo { color: #00a4ef; }
    .sponsor-card.amazon .sponsor-logo { color: #ff9900; }
    .sponsor-card.naver .sponsor-logo { color: #03c75a; }
    .sponsor-card.kakao .sponsor-logo { color: #fee500; }
    .sponsor-card.samsung .sponsor-logo { color: #1428a0; }
    .sponsor-card.apple .sponsor-logo { color: #000000; }
    .sponsor-card.meta .sponsor-logo { color: #1877f2; }
    .sponsor-card.netflix .sponsor-logo { color: #e50914; }
    .sponsor-card.github .sponsor-logo { color: #333333; }
    .sponsor-card.discord .sponsor-logo { color: #5865f2; }
    .sponsor-card.openai .sponsor-logo { color: #412991; }

    .sponsor-card.google:hover { border-color: #4285f4; }
    .sponsor-card.microsoft:hover { border-color: #00a4ef; }
    .sponsor-card.amazon:hover { border-color: #ff9900; }
    .sponsor-card.naver:hover { border-color: #03c75a; }
    .sponsor-card.kakao:hover { border-color: #fee500; }
    .sponsor-card.samsung:hover { border-color: #1428a0; }
    .sponsor-card.apple:hover { border-color: #000000; }
    .sponsor-card.meta:hover { border-color: #1877f2; }
    .sponsor-card.netflix:hover { border-color: #e50914; }
    .sponsor-card.github:hover { border-color: #333333; }
    .sponsor-card.discord:hover { border-color: #5865f2; }
    .sponsor-card.openai:hover { border-color: #412991; }

    /* 새로 추가된 회사들 색상 테마 */
    .sponsor-card.nvidia .sponsor-logo { color: #76b900; }
    .sponsor-card.intel .sponsor-logo { color: #0068b5; }
    .sponsor-card.amd .sponsor-logo { color: #ed1c24; }
    .sponsor-card.razer .sponsor-logo { color: #00ff00; }
    .sponsor-card.logitech .sponsor-logo { color: #00b8d4; }
    .sponsor-card.corsair .sponsor-logo { color: #ffffff; }
    .sponsor-card.asus .sponsor-logo { color: #000000; }
    .sponsor-card.msi .sponsor-logo { color: #ff6600; }
    .sponsor-card.lg .sponsor-logo { color: #a50034; }
    .sponsor-card.skt .sponsor-logo { color: #e60012; }
    .sponsor-card.kt .sponsor-logo { color: #ff6600; }
    .sponsor-card.line .sponsor-logo { color: #00c300; }
    .sponsor-card.coupang .sponsor-logo { color: #ff6b35; }
    .sponsor-card.baidu .sponsor-logo { color: #2932e1; }
    .sponsor-card.tencent .sponsor-logo { color: #00d4aa; }
    .sponsor-card.alibaba .sponsor-logo { color: #ff6600; }
    .sponsor-card.bytedance .sponsor-logo { color: #000000; }
    .sponsor-card.spotify .sponsor-logo { color: #1db954; }
    .sponsor-card.youtube .sponsor-logo { color: #ff0000; }
    .sponsor-card.twitch .sponsor-logo { color: #9146ff; }
    .sponsor-card.steam .sponsor-logo { color: #171a21; }
    .sponsor-card.epic .sponsor-logo { color: #313131; }
    .sponsor-card.unity .sponsor-logo { color: #000000; }
    .sponsor-card.adobe .sponsor-logo { color: #ff0000; }
    .sponsor-card.figma .sponsor-logo { color: #f24e1e; }
    .sponsor-card.slack .sponsor-logo { color: #4a154b; }
    .sponsor-card.zoom .sponsor-logo { color: #2d8cff; }
    .sponsor-card.tesla .sponsor-logo { color: #cc0000; }
    .sponsor-card.spacex .sponsor-logo { color: #005288; }

    .sponsor-card.nvidia:hover { border-color: #76b900; }
    .sponsor-card.intel:hover { border-color: #0068b5; }
    .sponsor-card.amd:hover { border-color: #ed1c24; }
    .sponsor-card.razer:hover { border-color: #00ff00; }
    .sponsor-card.logitech:hover { border-color: #00b8d4; }
    .sponsor-card.corsair:hover { border-color: #ffffff; }
    .sponsor-card.asus:hover { border-color: #000000; }
    .sponsor-card.msi:hover { border-color: #ff6600; }
    .sponsor-card.lg:hover { border-color: #a50034; }
    .sponsor-card.skt:hover { border-color: #e60012; }
    .sponsor-card.kt:hover { border-color: #ff6600; }
    .sponsor-card.line:hover { border-color: #00c300; }
    .sponsor-card.coupang:hover { border-color: #ff6b35; }
    .sponsor-card.baidu:hover { border-color: #2932e1; }
    .sponsor-card.tencent:hover { border-color: #00d4aa; }
    .sponsor-card.alibaba:hover { border-color: #ff6600; }
    .sponsor-card.bytedance:hover { border-color: #000000; }
    .sponsor-card.spotify:hover { border-color: #1db954; }
    .sponsor-card.youtube:hover { border-color: #ff0000; }
    .sponsor-card.twitch:hover { border-color: #9146ff; }
    .sponsor-card.steam:hover { border-color: #171a21; }
    .sponsor-card.epic:hover { border-color: #313131; }
    .sponsor-card.unity:hover { border-color: #000000; }
    .sponsor-card.adobe:hover { border-color: #ff0000; }
    .sponsor-card.figma:hover { border-color: #f24e1e; }
    .sponsor-card.slack:hover { border-color: #4a154b; }
    .sponsor-card.zoom:hover { border-color: #2d8cff; }
    .sponsor-card.tesla:hover { border-color: #cc0000; }
    .sponsor-card.spacex:hover { border-color: #005288; }

    /* AI 기업들 색상 테마 */
    .sponsor-card.anthropic .sponsor-logo { color: #d97706; }
    .sponsor-card.deepmind .sponsor-logo { color: #00b4d8; }
    .sponsor-card.huggingface .sponsor-logo { color: #ff6b6b; }
    .sponsor-card.stability .sponsor-logo { color: #4ecdc4; }
    .sponsor-card.midjourney .sponsor-logo { color: #a8e6cf; }
    .sponsor-card.cohere .sponsor-logo { color: #ffd93d; }
    .sponsor-card.characterai .sponsor-logo { color: #6c5ce7; }
    .sponsor-card.runway .sponsor-logo { color: #fd79a8; }

    .sponsor-card.anthropic:hover { border-color: #d97706; }
    .sponsor-card.deepmind:hover { border-color: #00b4d8; }
    .sponsor-card.huggingface:hover { border-color: #ff6b6b; }
    .sponsor-card.stability:hover { border-color: #4ecdc4; }
    .sponsor-card.midjourney:hover { border-color: #a8e6cf; }
    .sponsor-card.cohere:hover { border-color: #ffd93d; }
    .sponsor-card.characterai:hover { border-color: #6c5ce7; }
    .sponsor-card.runway:hover { border-color: #fd79a8; }

    /* 게임 기업들 색상 테마 */
    .sponsor-card.riot .sponsor-logo { color: #c89b3c; }
    .sponsor-card.blizzard .sponsor-logo { color: #00bcf2; }
    .sponsor-card.valve .sponsor-logo { color: #171a21; }
    .sponsor-card.ubisoft .sponsor-logo { color: #003a70; }
    .sponsor-card.ea .sponsor-logo { color: #0078d4; }
    .sponsor-card.activision .sponsor-logo { color: #d70015; }
    .sponsor-card.rockstar .sponsor-logo { color: #ffd700; }
    .sponsor-card.cdprojekt .sponsor-logo { color: #dc2626; }
    .sponsor-card.fromsoftware .sponsor-logo { color: #374151; }
    .sponsor-card.bandai .sponsor-logo { color: #f97316; }
    .sponsor-card.capcom .sponsor-logo { color: #dc2626; }
    .sponsor-card.squareenix .sponsor-logo { color: #7c3aed; }
    .sponsor-card.sega .sponsor-logo { color: #3b82f6; }
    .sponsor-card.konami .sponsor-logo { color: #1f2937; }
    .sponsor-card.nintendo .sponsor-logo { color: #dc2626; }
    .sponsor-card.sony .sponsor-logo { color: #0066cc; }

    .sponsor-card.riot:hover { border-color: #c89b3c; }
    .sponsor-card.blizzard:hover { border-color: #00bcf2; }
    .sponsor-card.valve:hover { border-color: #171a21; }
    .sponsor-card.ubisoft:hover { border-color: #003a70; }
    .sponsor-card.ea:hover { border-color: #0078d4; }
    .sponsor-card.activision:hover { border-color: #d70015; }
    .sponsor-card.rockstar:hover { border-color: #ffd700; }
    .sponsor-card.cdprojekt:hover { border-color: #dc2626; }
    .sponsor-card.fromsoftware:hover { border-color: #374151; }
    .sponsor-card.bandai:hover { border-color: #f97316; }
    .sponsor-card.capcom:hover { border-color: #dc2626; }
    .sponsor-card.squareenix:hover { border-color: #7c3aed; }
    .sponsor-card.sega:hover { border-color: #3b82f6; }
    .sponsor-card.konami:hover { border-color: #1f2937; }
    .sponsor-card.nintendo:hover { border-color: #dc2626; }
    .sponsor-card.sony:hover { border-color: #0066cc; }

    /* AI 개발 도구 회사들 색상 테마 */
    .sponsor-card.cursor .sponsor-logo { color: #00d4aa; }
    .sponsor-card.replit .sponsor-logo { color: #667eea; }
    .sponsor-card.codet5 .sponsor-logo { color: #ff6b6b; }
    .sponsor-card.tabnine .sponsor-logo { color: #ffd93d; }
    .sponsor-card.copilot .sponsor-logo { color: #333333; }
    .sponsor-card.kite .sponsor-logo { color: #00b4d8; }
    .sponsor-card.codewhisperer .sponsor-logo { color: #ff9900; }
    .sponsor-card.sourcegraph .sponsor-logo { color: #00d4aa; }
    .sponsor-card.deepcode .sponsor-logo { color: #6c5ce7; }
    .sponsor-card.codeguru .sponsor-logo { color: #ff9900; }
    .sponsor-card.intellicode .sponsor-logo { color: #00a4ef; }
    .sponsor-card.jetbrains .sponsor-logo { color: #000000; }

    .sponsor-card.cursor:hover { border-color: #00d4aa; }
    .sponsor-card.replit:hover { border-color: #667eea; }
    .sponsor-card.codet5:hover { border-color: #ff6b6b; }
    .sponsor-card.tabnine:hover { border-color: #ffd93d; }
    .sponsor-card.copilot:hover { border-color: #333333; }
    .sponsor-card.kite:hover { border-color: #00b4d8; }
    .sponsor-card.codewhisperer:hover { border-color: #ff9900; }
    .sponsor-card.sourcegraph:hover { border-color: #00d4aa; }
    .sponsor-card.deepcode:hover { border-color: #6c5ce7; }
    .sponsor-card.codeguru:hover { border-color: #ff9900; }
    .sponsor-card.intellicode:hover { border-color: #00a4ef; }
    .sponsor-card.jetbrains:hover { border-color: #000000; }

    /* 지역 후원/파트너 섹션 */
    .regional-sponsors-section {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border: 2px solid #90caf9;
    }

    .regional-sponsors-container {
        position: relative;
        overflow: hidden;
        padding: 2rem 0;
    }

    .regional-sponsors-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        position: relative;
        z-index: 2;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 0.5rem;
    }

    .regional-sponsor-card {
        background: white;
        border-radius: 20px;
        padding: 2rem 1rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 2px solid #e3f2fd;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        animation: regionalFloat 8s ease-in-out infinite;
        width: 100%;
        display: block;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    .regional-sponsor-card:nth-child(1) { animation-delay: 0s; }
    .regional-sponsor-card:nth-child(2) { animation-delay: 1.6s; }
    .regional-sponsor-card:nth-child(3) { animation-delay: 3.2s; }
    .regional-sponsor-card:nth-child(4) { animation-delay: 4.8s; }
    .regional-sponsor-card:nth-child(5) { animation-delay: 6.4s; }

    @keyframes regionalFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        25% {
            transform: translateY(-8px) rotate(0.5deg);
        }
        50% {
            transform: translateY(-4px) rotate(0deg);
        }
        75% {
            transform: translateY(-12px) rotate(-0.5deg);
        }
    }

    .regional-sponsor-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        animation-play-state: paused;
        text-decoration: none;
        color: inherit;
    }

    .regional-sponsor-logo {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .regional-sponsor-logo img {
        max-width: 80px;
        max-height: 80px;
        object-fit: contain;
        border-radius: 50%;
        background: #f8f9fa;
        padding: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .fallback-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .regional-sponsor-name {
        font-size: 1.1rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        line-height: 1.2;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .regional-sponsor-tag {
        font-size: 0.8rem;
        color: #6c757d;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        display: inline-block;
        border: 1px solid #dee2e6;
        font-weight: 500;
        line-height: 1.2;
        word-break: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    /* 각 지역별 색상 테마 */
    .regional-sponsor-card.seoul .regional-sponsor-logo { border-color: #ff6b35; }
    .regional-sponsor-card.anyang .regional-sponsor-logo { border-color: #4ecdc4; }
    .regional-sponsor-card.gyeonggi .regional-sponsor-logo { border-color: #45b7d1; }
    .regional-sponsor-card.ulsan .regional-sponsor-logo { border-color: #96ceb4; }
    .regional-sponsor-card.busan .regional-sponsor-logo { border-color: #feca57; }

    .regional-sponsor-card.seoul:hover { 
        border-color: #ff6b35; 
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    }
    .regional-sponsor-card.anyang:hover { 
        border-color: #4ecdc4; 
        box-shadow: 0 20px 50px rgba(78, 205, 196, 0.2);
    }
    .regional-sponsor-card.gyeonggi:hover { 
        border-color: #45b7d1; 
        box-shadow: 0 20px 50px rgba(69, 183, 209, 0.2);
    }
    .regional-sponsor-card.ulsan:hover { 
        border-color: #96ceb4; 
        box-shadow: 0 20px 50px rgba(150, 206, 180, 0.2);
    }
    .regional-sponsor-card.busan:hover { 
        border-color: #feca57; 
        box-shadow: 0 20px 50px rgba(254, 202, 87, 0.2);
    }
    
    .portal-title-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }
    
    .banner-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
    }
    
    .banner-content {
        text-align: center;
        color: white;
    }
    
    .banner-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 0.25rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
        animation: titleGlow 4s ease-in-out infinite alternate;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        font-weight: 400;
        line-height: 1.5;
    }
    
    .banner-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .feature-item {
        background: rgba(255, 255, 255, 0.2);
        padding: 0.75rem 1.5rem;
        border-radius: 25px;
        font-size: 0.95rem;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    @keyframes titleGlow {
        0% {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
        }
        100% {
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.3);
        }
    }
    
    /* 포털 컨테이너 - 사이드바 너비 조정 완료 */
    .portal-container {
        display: grid !important;
        grid-template-columns: 200px 1fr 220px !important;
        gap: 1rem !important;
        max-width: 1600px !important;
        margin: 0 auto !important;
        padding: 1rem;
        min-height: calc(100vh - 120px);
        background: transparent;
        position: relative;
    }

    /* 왼쪽 사이드바 */
    .left-sidebar {
        background: white !important;
        border-radius: 16px;
        padding: 1rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        position: sticky;
        width: 280px !important;
        max-width: 280px !important;
        top: 1rem;
        height: fit-content;
        z-index: 100;
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
    }

    /* 왼쪽 사이드바 추가 강화 */
    .portal-container .left-sidebar,
    aside.left-sidebar,
    body .left-sidebar {
        position: sticky !important;
        top: 1rem !important;
        height: fit-content !important;
        z-index: 100 !important;
        background: white !important;
        border-radius: 16px !important;
        padding: 1rem !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(15px) !important;
    }

    /* 최종 오른쪽 사이드바 강제 고정 - 모든 스타일을 무시하고 적용 */
    html body .portal-container .right-sidebar,
    html body aside.right-sidebar,
    html body .right-sidebar,
    .portal-container .right-sidebar,
    aside.right-sidebar,
    .right-sidebar {
        width: 220px !important;
        max-width: 220px !important;
        min-width: 220px !important;
        background: white !important;
        border-radius: 16px !important;
        padding: 1rem !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(15px) !important;
    }

    /* 포털 컨테이너 최종 강제 적용 */
    html body .portal-container,
    body .portal-container,
    .portal-container {
        display: grid !important;
        grid-template-columns: 200px 1fr 220px !important;
        gap: 1rem !important;
        max-width: 1600px !important;
        margin: 0 auto !important;
    }

    .left-sidebar h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #f8f9fa;
    }

    .left-sidebar h3 i {
        color: #667eea;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    /* 광고 배너 섹션 */
    .ad-banners-section {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f8f9fa;
    }

    .ad-banners-section h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #f8f9fa;
    }

    .ad-banner-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ad-banner-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    }

    /* 사용자 섹션 */
    .user-section {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* 로그인된 사용자 정보 박스 */
    .user-section .user-profile {
        margin-bottom: 0.25rem;
        position: relative;
    }

    /* user-info 박스 스타일 */
    .user-info {
        padding: 1rem 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 2px solid #667eea;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        margin-bottom: 0.25rem;
    }

    /* 사용자 액션 버튼들도 박스로 감싸기 */
    .user-actions {
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 10px;
        border: 1px solid #e9ecef;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* 로그인 섹션은 원래 스타일 유지 */
    .login-section {
        padding: 1rem;
    }


    .left-sidebar .user-avatar,
    .portal-container .left-sidebar .user-avatar,
    .user-info .user-avatar,
    div.user-avatar {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        background: linear-gradient(135deg, #667eea, #764ba2) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }

    .left-sidebar .user-avatar img,
    .portal-container .left-sidebar .user-avatar img,
    .user-info .user-avatar img,
    div.user-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
        min-width: 60px !important;
        min-height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }

    .user-details {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .user-status {
        color: #20c997 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .user-name,
    .left-sidebar .user-name,
    .user-details .user-name,
    .user-info .user-name {
        font-weight: 600 !important;
        color: #333 !important;
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
        margin-top: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
        position: relative !important;
    }

    .user-status {
        font-size: 0.9rem;
        color: #4ecdc4;
        font-weight: 500;
    }

    .user-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .user-action-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        background: #f8f9fa;
        border-radius: 10px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .user-action-btn:hover {
        background: #667eea;
        color: white;
        text-decoration: none;
        transform: translateX(5px);
    }

    .user-action-btn.admin {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #333;
    }

    .user-action-btn.admin:hover {
        background: linear-gradient(135deg, #ffed4e, #ffd700);
        color: #333;
    }

    /* 로그인 섹션 */
    .login-section {
            text-align: center;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .login-icon {
        font-size: 3.5rem;
        color: #667eea;
        margin-bottom: 1.5rem;
        display: block;
    }

    .login-text {
        text-align: center !important;
    }

    .login-text h3 {
        font-size: 1.3rem;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        font-weight: 600;
        text-align: center !important;
        display: block;
        width: 100%;
    }

    .login-text p {
        font-size: 0.95rem;
        color: #6c757d;
        margin-bottom: 2rem;
        line-height: 1.5;
        text-align: center !important;
        display: block;
        width: 100%;
    }

    .login-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .login-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        position: relative;
        overflow: hidden;
    }

    .login-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .login-btn:hover::before {
        left: 100%;
    }

    .login-btn.primary {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .login-btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

    .login-btn.secondary {
        background: white;
        color: #495057;
        border: 2px solid #e9ecef;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .login-btn.secondary:hover {
        background: #f8f9fa;
        border-color: #667eea;
        color: #495057;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* 검색 섹션 */
    .search-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #f8f9fa;
    }

    .search-box {
        position: relative;
        margin-bottom: 0.25rem;
    }

    .search-box input {
        width: 100%;
        padding: 1rem 4rem 1rem 1.25rem;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .search-box input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

    .search-box button {
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .search-box button:hover {
        background: linear-gradient(135deg, #5a6fd8, #6a4c93);
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .search-suggestions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .suggestion-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        font-size: 0.85rem;
        color: #6c757d;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .suggestion-item:hover {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        border-color: transparent;
    }

    /* 빠른 링크 섹션 */
    .quick-links-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #f8f9fa;
    }

    .quick-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .quick-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.25rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        color: #495057;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        position: relative;
        z-index: 1;
    }

    .quick-link:hover {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        text-decoration: none;
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        border-color: transparent;
    }

    .quick-link i {
        width: 20px;
        text-align: center;
        font-size: 1rem;
    }

    .quick-link.external {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: white;
        border-color: transparent;
    }

    .quick-link.external:hover {
        background: linear-gradient(135deg, #44a08d, #4ecdc4);
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    }

    /* 통계 섹션 */
    .stats-section {
        margin-bottom: 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        min-height: 70px;
        height: 100%;
    }

    .stat-item:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        border-radius: 11px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.15rem;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .stat-info {
        flex: 1;
    }

    .stat-number {
        font-size: 1.6rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 0.2rem;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
        line-height: 1.2;
    }

    /* 메인 콘텐츠 영역 */
    .main-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: white;
        border-radius: 16px;
        align-self: flex-start;
        align-items: flex-start;
        padding: 1rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
        width: 100%;
    }

    /* 섹션 헤더 */
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0 !important; /* 완전히 제거 */
    }

    .section-header h2 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .section-header h2 i {
        color: #667eea;
    }

    .view-all {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: #667eea;
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .view-all:hover {
        color: #5a6fd8;
        text-decoration: none;
        transform: translateX(3px);
    }

    /* 커뮤니티 섹션 */
    .community-section {
        margin-bottom: 3rem; /* 원래 간격으로 복구 */
    }

    .community-posts {
        margin-top: 1.5rem;
    }

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

    .post-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .post-card:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    .post-category {
        display: inline-block;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
    }

    .post-category.popular {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }

    .post-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.25rem;
        line-height: 1.4;
    }

    /* 인기 게시글 전용 스타일 */
    .popular-posts .post-title {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.3 !important;
    }

    .popular-posts .post-title a {
        font-size: inherit !important;
        color: inherit !important;
        text-decoration: none !important;
        font-weight: inherit !important;
    }

    .post-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .post-title a:hover {
        color: #667eea;
        text-decoration: none;
    }

    .post-meta {
        display: flex;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
        flex-wrap: wrap;
    }

    .post-author {
        font-weight: 500;
        color: #667eea;
    }

    .post-date {
        color: #999;
    }

    .post-views {
        color: #999;
    }

    /* 서버 섹션 */
    .servers-section {
        margin-bottom: 2rem;
    }

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

    .server-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .server-card:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #4ecdc4;
    }

    .server-status {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .server-status.online {
        background: rgba(78, 205, 196, 0.2);
        color: #4ecdc4;
    }

    .server-card .server-name {
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        color: #333 !important;
        margin-bottom: 0.5rem !important;
    }

    .server-description {
        color: #666;
        line-height: 1.5;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .server-info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .player-count {
        color: #4ecdc4;
        font-weight: 600;
    }

    .server-version {
        color: #999;
    }

    .server-join {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem;
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
    }

    .server-join:hover {
        background: linear-gradient(135deg, #44a08d, #4ecdc4);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
        color: white;
        text-decoration: none;
    }

    /* 개발 프로젝트 섹션 */
    .development-section {
        margin-bottom: 2rem;
    }

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

    .project-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .project-card:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #f093fb;
    }

    .project-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #f093fb, #f5576c);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
    }

    .project-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .project-description {
        color: #666;
        line-height: 1.5;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .project-status {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .status-badge {
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-block;
    }

    .status-badge.active {
        background: rgba(240, 147, 251, 0.2);
        color: #f093fb;
    }

    .status-badge.completed {
        background: rgba(76, 205, 196, 0.2);
        color: #4ecdc4;
    }

    .project-date {
        font-size: 0.8rem;
        color: #999;
    }

    /* 스트리머 섹션 */
    .streamers-section {
        margin-bottom: 2rem;
    }

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

    .streamer-card {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 1.5rem;
        border: 1px solid #e9ecef;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .streamer-card:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    .streamer-avatar {
        position: relative;
        flex-shrink: 0;
    }
    
    .avatar-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid white;
    }
    
    .ad-placeholder {
        width: 100%;
        height: 120px;
        border-radius: 8px;
    }

    .streamer-avatar img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid white;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .live-indicator {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ff4757;
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 10px;
        font-size: 0.7rem;
        font-weight: 600;
        animation: pulse 2s ease-in-out infinite;
    }

    .streamer-info {
        flex: 1;
    }

    .streamer-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 0.3rem;
    }

    .streamer-game {
        color: #667eea;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .streamer-stats {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .viewer-count {
        font-size: 0.9rem;
        color: #4ecdc4;
        font-weight: 600;
    }

    .subscriber-count {
        font-size: 0.8rem;
        color: #999;
    }

    .community-placeholder {
        text-align: center;
        padding: 3rem 2rem;
        color: #666;
    }

    .community-placeholder i {
        font-size: 3rem;
        color: #667eea;
        margin-bottom: 0.25rem;
    }

    .community-placeholder h3 {
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .community-placeholder p {
        font-size: 0.9rem;
        color: #666;
    }

    /* 서비스 그리드 */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .service-card:hover::after {
        left: 100%;
    }

    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: #667eea;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 2rem;
        color: white;
        font-size: 1.8rem;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    }

    .service-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.25rem;
    }

    .service-card p {
        font-size: 0.95rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .service-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        color: #495057;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .service-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .service-btn:hover::before {
        left: 0;
    }

    .service-btn:hover {
        color: white;
        text-decoration: none;
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    }

    /* 오른쪽 사이드바 */
    .right-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: white !important;
        border-radius: 16px;
        width: 300px !important;
        max-width: 300px !important;
        padding: 1rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
        position: sticky;
        top: 1rem;
        height: fit-content;
        z-index: 100;
    }

    /* 오른쪽 사이드바 섹션 스타일 */
    .right-sidebar > div {
        margin-bottom: 0.25rem;
        padding: 0.25rem 0;
    }

    .right-sidebar > div:last-child {
        margin-bottom: 0;
    }

    .right-sidebar h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #f8f9fa;
    }

    .right-sidebar h3 i {
        color: #667eea;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    /* 광고 섹션 */
    .ad-container {
        display: flex;
            flex-direction: column;
            gap: 1rem;
    }

    /* 오른쪽 사이드바 전용 광고 카드 */
    .right-sidebar .ad-card {
        border: 1px solid #e9ecef;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        width: 100%;
        max-width: 330px; /* 사이드바 너비에 맞춤 */
    }

    .right-sidebar .ad-card:hover {
        border-color: #667eea;
        transform: translateY(-4px);
        box-shadow: 0 12px 25px rgba(102, 126, 234, 0.15);
    }

    .ad-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .ad-badge {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .ad-title {
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e50;
    }

    .ad-content {
        padding: 0.75rem;
    }

    .ad-image {
        width: 100%;
        height: 90px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0.25rem;
    }

    .ad-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ad-description {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 0.5rem;
    }

    .ad-discount {
        font-size: 0.8rem;
        color: #e74c3c;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .ad-link {
        display: block;
        text-align: center;
        padding: 0.75rem;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        position: relative;
        overflow: hidden;
    }

    .ad-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .ad-link:hover::before {
        left: 100%;
    }

    .ad-link:hover {
        background: linear-gradient(135deg, #5a6fd8, #6a4c93);
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }

    .ad-inquiry-btn {
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 0.6rem 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        margin-top: 0.5rem;
        text-decoration: none;
    }

    .ad-inquiry-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }

    .ad-inquiry-btn i {
        font-size: 0.75rem;
    }

    /* 실시간 채팅 섹션 */
    .chat-container {
        max-height: 400px;
        overflow-y: hidden;
        margin-bottom: 15px;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px solid #e1e5e9;
    }
    
    .chat-messages {
        display: flex;
        flex-direction: column;
        min-height: 300px;
        max-height: 350px;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        padding-right: 5px;
    }
    
    .chat-messages::after {
        content: '';
        flex: 1;
        min-height: 1px;
    }

    .chat-message {
        display: flex;
        margin-bottom: 8px;
        align-items: flex-start;
        width: 100%;
    }


    /* 메시지 아바타 */
    .message-avatar {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 3px;
        flex-shrink: 0;
    }

    .message-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    /* 메시지 콘텐츠 */
    .message-content {
        flex: 1;
        background: white;
        padding: 12px 16px;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #e1e5e9;
        min-width: 0;
        overflow: hidden;
        max-width: calc(100% - 25px);
        width: calc(100% - 25px);
    }

    /* 메시지 헤더 스타일 */
    .message-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
        min-width: 0;
    }

    .username {
        font-weight: 600;
        font-size: 12px;
        color: #333;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }

    /* 채팅 사용자 교대 색상 - 소소한 강조 (크기 변경 없음) */
    .username.speaker-a {
        background-color: rgba(102, 126, 234, 0.15);
        color: #3f51b5;
        padding: 2px 6px;
        border-radius: 6px;
    }
    .username.speaker-b {
        background-color: rgba(118, 75, 162, 0.15);
        color: #8e24aa;
        padding: 2px 6px;
        border-radius: 6px;
    }
    /* 동일 발화자 연속 메시지는 살짝 옅게 */
    .username.same-speaker {
        filter: saturate(0.7);
        opacity: 0.9;
    }

    .time {
        font-size: 10px;
        color: #999;
        flex-shrink: 0;
        margin-left: 8px;
    }

    .message-text {
        font-size: 13px;
        color: #333;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .chat-content {
        flex: 1;
    }

    .chat-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.3rem;
    }

    .chat-username {
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
    }

    .chat-time {
        font-size: 0.7rem;
        color: #999;
    }

    .chat-text {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.4;
    }

    .chat-input {
        display: flex;
        gap: 0.5rem;
        margin: 1rem auto 0 auto;
        padding: 0.75rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        align-items: center;
        justify-content: center;
        max-width: 320px;
    }

    .chat-input input {
        flex: 1;
        padding: 0.5rem 0.75rem;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        font-size: 0.9rem;
        background: white;
        transition: all 0.3s ease;
        min-width: 180px;
        max-width: 250px;
    }

    .chat-input input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .chat-send {
        padding: 0.5rem;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        font-weight: 600;
    }

    .chat-send:hover {
        background: linear-gradient(135deg, #5a6fd8, #6a4c93);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }

    /* 인기 글 섹션 */
    .popular-posts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .popular-post {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .popular-post:hover {
        background: #f8f9fa;
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    /* 최신 게시글 스타일 */
    .recent-posts-section {
        margin-bottom: 2rem;
    }

    .recent-posts-section h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        border-bottom: 2px solid #e9ecef;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .recent-posts-section h3 i {
        color: #667eea;
        font-size: 1rem;
    }

    .recent-posts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .recent-post {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .recent-post:hover {
        background: #f8f9fa;
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    .recent-post .post-info {
        flex: 1;
        min-width: 0;
    }

    .recent-posts .post-title {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .recent-posts .post-title a {
        font-size: inherit !important;
        color: inherit !important;
        text-decoration: none !important;
        font-weight: inherit !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .recent-posts .post-title a:hover {
        color: #667eea !important;
    }

    .recent-posts .post-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.75rem;
        color: #6c757d;
        margin-bottom: 0.3rem;
    }

    .recent-posts .post-meta span {
        padding: 2px 6px;
        border-radius: 4px;
        background: #f8f9fa;
        font-weight: 500;
    }

    .recent-posts .post-meta .board {
        background: #e3f2fd;
        color: #1976d2;
    }

    .recent-posts .post-meta .author {
        background: #f3e5f5;
        color: #7b1fa2;
    }

    .recent-posts .post-meta .time {
        background: #e8f5e8;
        color: #388e3c;
    }

    .recent-posts .post-stats {
        display: flex;
        gap: 0.5rem;
        font-size: 0.7rem;
        color: #868e96;
    }

    .recent-posts .post-stats span {
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }

    .recent-posts .post-stats i {
        font-size: 0.65rem;
    }

    .post-rank {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.8rem;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .post-info {
        flex: 1;
    }

    .post-title {
        font-size: 0.65rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 0.2rem;
        line-height: 1.3;
    }

    .post-meta {
        font-size: 0.65rem;
        color: #666;
    }

    .post-views {
        font-size: 0.65rem;
        color: #999;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    /* 최근 댓글 섹션 */
    .recent-comments-section h3 span {
        color: #667eea !important;
        margin-right: 0.5rem;
        font-size: 1.2rem;
    }
    
    .recent-comments {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .comment-item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .comment-item:hover {
        background: #f8f9fa;
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #4ecdc4;
    }

    .comment-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        font-weight: 600;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
    }

    .comment-content {
        flex: 1;
    }

    .comment-author {
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.3rem;
    }

    .comment-text {
        font-size: 0.85rem;
        color: #555;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }

    .comment-post {
        font-size: 0.75rem;
        color: #999;
    }

    /* 방문자 통계 섹션 */
    .visitor-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .visitor-stat {
        text-align: center;
        padding: 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .visitor-stat:hover {
        background: #f8f9fa;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    .visitor-number {
        font-size: 1.5rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .visitor-label {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 500;
    }

    /* 반응형 디자인 */
    @media (max-width: 1600px) {
        .portal-container {
            grid-template-columns: 200px 1fr 220px !important;
            padding: 1rem;
        }
    }

    @media (max-width: 1400px) {
        .portal-container {
            grid-template-columns: 180px 1fr 200px !important;
            padding: 1rem;
        }
    }

    @media (max-width: 1200px) {
        .portal-container {
            grid-template-columns: 160px 1fr 180px !important;
            padding: 1rem;
        }
    }

    @media (max-width: 992px) {
        .portal-container {
            grid-template-columns: 140px 1fr 160px !important;
            padding: 0.75rem;
            gap: 0.75rem;
        }

        .left-sidebar {
            padding: 0.75rem;
        }

        .right-sidebar {
            padding: 0.75rem;
        }

        .main-content {
            padding: 0.75rem;
        }


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

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .visitor-stats {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .portal-container {
            grid-template-columns: 120px 1fr 140px !important;
            padding: 0.5rem;
            gap: 0.5rem;
            max-width: 100%;
        }

        .left-sidebar {
            padding: 0.5rem;
            border-radius: 12px;
        }

        .right-sidebar {
            padding: 0.5rem;
            border-radius: 12px;
        }

        .main-content {
            padding: 0.75rem;
        }
    }

    /* 더 작은 화면에서는 세로 배치 */
    @media (max-width: 576px) {
        .portal-container {
            grid-template-columns: 1fr !important;
            grid-template-rows: auto auto auto;
            padding: 0.5rem;
            gap: 0.75rem;
        }

        .left-sidebar {
            position: static;
            width: 100%;
            order: 1;
        }

        .main-content {
            width: 100%;
            order: 2;
        }

        .right-sidebar {
            position: static;
            width: 100%;
            order: 3;
        }

        .service-card {
            padding: 2rem;
            border-radius: 16px;
        }

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

        .visitor-stats {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .stat-item {
            padding: 1rem;
        }
        
    /* 모바일 타이틀바 */
    .portal-title-banner {
        padding: 1.5rem 0;
        margin: 0 0 0.5rem 0;
    }

    /* 모바일 확장 섹션 */
    .extended-content-section {
        padding: 1rem 0;
        margin: 1rem 0;
    }

    .extended-container {
        max-width: 1800px;
        padding: 0 1rem;
    }

    .extended-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem; /* 원래 간격으로 복구 */
    }

    .extended-section .section-header h2 {
        font-size: 0.9rem;
    }

    .community-extended .post-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 1rem;
    }
    
    .servers-extended .servers-grid,
    .development-extended .projects-grid,
    .services-extended .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* 파트너 스트리머 모바일 */
    .partner-streamers-extended .partner-streamers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
    }
    
    .streamer-card {
        padding: 0.4rem 0.2rem;
    }
    
    .partner-streamers-extended .streamer-avatar img {
        width: 95px !important;
        height: 95px !important;
        border: 3px solid rgba(255, 255, 255, 0.3) !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .partner-streamers-extended .streamer-name {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .partner-streamers-extended .streamer-followers {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .streamer-link {
        top: 0.3rem;
        right: 0.3rem;
        font-size: 0.6rem;
    }

    /* 협찬사 섹션 모바일 */
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .sponsor-card {
        padding: 1rem 0.5rem;
    }

    .sponsor-logo {
            font-size: 2rem;
        height: 50px;
    }

    .sponsor-name {
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .sponsor-tag {
        font-size: 0.6rem;
        line-height: 1.1;
        padding: 0.15rem 0.3rem;
    }

    /* 지역 후원/파트너 섹션 모바일 */
    .regional-sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.25rem;
    }

    .regional-sponsor-card {
        padding: 1.5rem 0.75rem;
        width: 100%;
    }

    .regional-sponsor-logo {
        height: 60px;
        margin-bottom: 0.25rem;
    }

    .regional-sponsor-logo img {
        max-width: 60px;
        max-height: 60px;
        padding: 8px;
    }

    .fallback-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .regional-sponsor-name {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .regional-sponsor-tag {
            font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        line-height: 1.1;
    }

    /* 모바일 광고 배너 */
    .ad-banners-section {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .ad-banners-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .ad-banner-item {
        padding: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
        
        .banner-container {
            padding: 0 1rem;
        }
        
        .banner-title {
            font-size: 1.8rem;
            margin-bottom: 0.75rem;
        }
        
        .banner-subtitle {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }
        
        .banner-features {
            gap: 0.5rem;
            flex-direction: column;
            align-items: center;
        }
        
        .feature-item {
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            width: fit-content;
        }
        
        /* 타이틀바 반응형 */
        .banner-title {
            font-size: 2rem;
        }
        
        .banner-subtitle {
        font-size: 1rem;
        }
        
        .banner-features {
            gap: 1rem;
        }
        
        .feature-item {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .search-box input {
            padding: 0.875rem 3.5rem 0.875rem 1rem;
        }

        .login-btn {
            padding: 0.875rem 1.25rem;
        }

        .quick-link {
            padding: 0.875rem 1rem;
        }
    }

    /* 애니메이션 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
        opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .animate-fadeInUp {
        animation: fadeInUp 0.6s ease-out;
    }

    .animate-fadeInLeft {
        animation: fadeInLeft 0.6s ease-out;
    }

    .animate-fadeInRight {
        animation: fadeInRight 0.6s ease-out;
    }

    /* 스크롤 애니메이션 */
    .scroll-animate {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* 포털 알림 */
    .portal-notification {
        position: fixed;
        top: 2rem;
        right: 2rem;
        background: white;
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transform: translateX(400px);
        transition: all 0.4s ease;
        max-width: 350px;
    }

    .portal-notification.show {
        transform: translateX(0);
    }

    .notification-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .notification-title {
        font-weight: 600;
        color: #333;
        font-size: 1rem;
    }

    .notification-close {
        background: none;
        border: none;
        color: #999;
        cursor: pointer;
            font-size: 1.2rem;
        padding: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .notification-close:hover {
        background: #f8f9fa;
        color: #333;
    }

    .notification-content {
        color: #666;
            font-size: 0.9rem;
        line-height: 1.4;
    }

    .notification-type {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
    }

    .notification-type.info {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
    }

    .notification-type.success {
        background: rgba(76, 175, 80, 0.1);
        color: #4caf50;
    }

    .notification-type.warning {
        background: rgba(255, 193, 7, 0.1);
        color: #ffc107;
    }

    .notification-type.error {
        background: rgba(244, 67, 54, 0.1);
        color: #f44336;
    }

    /* 로딩 애니메이션 */
    .loading-spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #667eea;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* 카드 호버 효과 */
    .hover-lift {
        transition: all 0.3s ease;
    }

    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    /* 그라데이션 텍스트 */
    .gradient-text {
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* 파티클 효과 */
    .particle {
        position: absolute;
        background: rgba(102, 126, 234, 0.1);
        border-radius: 50%;
        pointer-events: none;
        animation: particleFloat 6s ease-in-out infinite;
    }

    @keyframes particleFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }

    /* 리플 효과 */
    .ripple {
        position: relative;
        overflow: hidden;
    }

    .ripple::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .ripple:active::before {
        width: 300px;
        height: 300px;
    }

    /* 펄스 애니메이션 */
    .pulse {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    /* 포털 슬라이드 효과 */
    .portal-slide-in {
        animation: portalSlideIn 0.8s ease-out;
    }

    .portal-slide-out {
        animation: portalSlideOut 0.8s ease-in;
    }

    @keyframes portalSlideIn {
        from {
            opacity: 0;
            transform: translateX(-100px) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    @keyframes portalSlideOut {
        from {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
        to {
            opacity: 0;
            transform: translateX(100px) scale(0.9);
        }
    }

    .realtime-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
    }

    .realtime-section .section-badge {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .section-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #333;
    }

    .realtime-section .section-header h2 {
        color: white;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .realtime-section .section-header p {
        color: rgba(255, 255, 255, 0.8);
    }

    /* 서비스 섹션 스타일 */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
        color: white;
    }

    .service-card.streaming .service-icon {
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    }

    .service-card.minecraft .service-icon {
        background: linear-gradient(135deg, #4ecdc4, #44a08d);
    }

    .service-card.community .service-icon {
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .service-card.development .service-icon {
        background: linear-gradient(135deg, #f093fb, #f5576c);
    }

    .service-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        color: #333;
    }

    .service-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .feature-tag {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .service-link:hover {
        color: #5a6fd8;
        transform: translateX(5px);
        text-decoration: none;
    }

    /* 실시간 섹션 스타일 */
    .realtime-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .realtime-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .realtime-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .card-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
    }

    .card-info h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: white;
    }

    .live-indicator,
    .online-indicator,
    .activity-indicator {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .live-dot,
    .online-dot,
    .activity-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #4ecdc4;
        animation: pulse 2s ease-in-out infinite;
    }

    .online-dot {
        background: #4ecdc4;
    }

    .activity-dot {
        background: #f093fb;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .card-count {
        margin-left: auto;
        text-align: center;
    }

    .count-number {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: #ffd700;
    }

    .count-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .card-content {
        margin-bottom: 1.5rem;
    }

    .streamer-list,
    .server-list,
    .activity-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .streamer-item,
    .server-item,
    .activity-item {
        display: flex;
        align-items: center;
        gap: 1rem;
            padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .streamer-item:hover,
    .server-item:hover,
    .activity-item:hover {
        background: rgba(255, 255, 255, 0.15);
        }

        .streamer-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
    }

    .streamer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .streamer-details {
        flex: 1;
    }

    .streamer-name,
    .server-name {
        font-weight: 600;
        color: white;
        margin-bottom: 0.2rem;
    }

    .streamer-game,
    .server-ip {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .viewer-count,
    .player-count {
        font-weight: 600;
        color: #ffd700;
        font-size: 0.9rem;
    }

    .status-badge {
        padding: 0.2rem 0.6rem;
        border-radius: 10px;
            font-size: 0.8rem;
        font-weight: 500;
    }

    .status-badge.online {
        background: rgba(76, 205, 196, 0.2);
        color: #4ecdc4;
    }

    .activity-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .activity-details {
        flex: 1;
    }

    .activity-title {
        font-weight: 500;
        color: white;
        margin-bottom: 0.2rem;
    }

    .activity-meta {
            font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .card-action {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .card-action:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        text-decoration: none;
        transform: translateX(5px);
    }

    /* 뉴스 섹션 스타일 */
    .news-section {
        background: white;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .news-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(102, 126, 234, 0.1);
        transition: all 0.3s ease;
    }

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .news-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f8f9fa;
    }

    .news-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
    }

    .news-header h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        flex: 1;
    }

    .news-link {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .news-link:hover {
        color: #5a6fd8;
        text-decoration: none;
    }

    .news-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .post-item,
    .project-item {
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .post-item:hover,
    .project-item:hover {
        background: #e9ecef;
    }

    .post-category {
        display: inline-block;
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        padding: 0.2rem 0.6rem;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .post-title a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        line-height: 1.4;
        display: block;
        margin-bottom: 0.5rem;
    }

    .post-title a:hover {
        color: #667eea;
        text-decoration: none;
    }

    .post-meta {
        display: flex;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }

    .project-name {
        font-weight: 600;
        color: #333;
        margin-bottom: 0.3rem;
    }

    .project-description {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .project-date {
        font-size: 0.8rem;
        color: #999;
    }

    /* 파트너 섹션 스타일 */
    .partners-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .partner-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .partner-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .partner-logo {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .partner-info h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .partner-info p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .partner-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
        padding: 0.75rem 1.5rem;
        border: 2px solid #667eea;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .partner-link:hover {
        background: #667eea;
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .services-grid,
        .realtime-grid,
        .news-grid,
        .partners-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .services-section,
        .realtime-section,
        .news-section,
        .partners-section {
            padding: 3rem 0;
        }

        .section-header h2 {
            font-size: 1.2rem;
        }

        .hero-stats {
            gap: 1.5rem;
        }
    }

    /* 메시지 스타일 */
    .message-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        max-width: 400px;
    }
    
    .message {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-bottom: 0.25rem;
        animation: slideIn 0.3s ease;
    }
    
    .message-success {
        background: #4caf50;
        color: white;
    }
    
    .message-info {
        background: #2196f3;
        color: white;
    }
    
    .message-error {
        background: #f44336;
        color: white;
    }
    
    .message i {
        font-size: 1.2rem;
    }
    
    .message-close {
        background: none;
        border: none;
        color: inherit;
        cursor: pointer;
        padding: 0;
        margin-left: auto;
        font-size: 1rem;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    
    .message-close:hover {
        opacity: 1;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @media (max-width: 768px) {
        .message-container {
            top: 10px;
            right: 10px;
            left: 10px;
            max-width: none;
        }
    }

    /* 스트리밍 플랫폼 스타일 메인 그리드 */
    .streaming-main-grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start; /* 왼쪽 정렬로 변경 */
    }

    /* 핫 스트리머 섹션 */
    .hot-streamers-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }
    
    
    
    
    
    /* 모든 섹션의 그리드들을 전체 너비로 */
    .clips-grid,
    .category-streamers-grid,
    .highlights-grid,
    .trending-games-grid,
    .new-streamers-grid,
    .live-talk-grid,
    .events-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }
    

    /* 메인 콘텐츠 전용 스트리머 카드 */
    .main-content .hot-streamer-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        min-height: 140px;
        max-width: none; /* 메인 콘텐츠에서는 제한 없음 */
    }

    .main-content .hot-streamer-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }


    .streamer-thumbnail {
        position: relative;
        height: 100px;
        overflow: hidden;
    }

    .thumbnail-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .live-indicator {
        position: absolute;
        top: 8px;
        left: 8px;
        background: #ff4757;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .live-dot {
        width: 6px;
        height: 6px;
        background: white;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    .viewer-count-overlay {
        position: absolute;
        bottom: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .streamer-info {
        padding: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .streamer-avatar-small .avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 0.8rem;
    }

    .streamer-details h4 {
        margin: 0 0 4px 0;
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }

    .game-title {
        margin: 0 0 6px 0;
        font-size: 0.8rem;
        color: #666;
    }

    .category-tag {
        background: #f1f3f4;
        color: #666;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 500;
    }

    /* 추천 클립 섹션 */
    .clips-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    /* 메인 콘텐츠 전용 클립 카드 */
    .main-content .clip-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 100%;
        min-height: 140px;
        max-width: none; /* 메인 콘텐츠에서는 제한 없음 */
    }

    .main-content .clip-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .clip-thumbnail {
        position: relative;
        height: 100px;
        overflow: hidden;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

    .clip-duration {
        position: absolute;
        bottom: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .clip-info {
        padding: 8px;
    }

    .clip-info h4 {
        margin: 0 0 6px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .clip-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.7rem;
        color: #666;
    }

    /* 카테고리별 스트리머 */
    .category-tabs {
        display: flex;
        gap: 6px;
        margin-bottom: 0.1rem;
        flex-wrap: wrap;
    }

    .category-tab {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .category-tab:hover,
    .category-tab.active {
        background: #667eea;
        color: white;
        border-color: #667eea;
    }

    .category-streamers-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    /* 메인 콘텐츠 전용 카테고리 스트리머 카드 */
    .main-content .category-streamer-card {
        background: white;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        width: 100%;
        min-height: 80px;
        max-width: none; /* 메인 콘텐츠에서는 제한 없음 */
    }

    .main-content .category-streamer-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .streamer-avatar {
        position: relative;
    }

    .streamer-avatar .avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 0.8rem;
    }

    .status-dot {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid white;
    }

    .status-dot.online {
        background: #2ed573;
    }

    .status-dot.offline {
        background: #a4b0be;
    }

    .category-streamer-card .streamer-info h4 {
        margin: 0 0 2px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
    }

    .viewer-count {
        margin: 0;
        font-size: 0.7rem;
        color: #666;
    }

    /* 하이라이트 섹션 */
    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    .highlight-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 100%;
        min-height: 140px;
    }

    .highlight-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }


    .highlight-thumbnail {
        position: relative;
        height: 100px;
        overflow: hidden;
    }

    .highlight-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background: #ff4757;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .highlight-content {
        padding: 8px;
    }

    .highlight-content h3,
    .highlight-content h4 {
        margin: 0 0 6px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
        line-height: 1.2;
    }

    .highlight-content p {
        margin: 0 0 6px 0;
        font-size: 0.75rem;
        color: #666;
        line-height: 1.3;
    }

    .highlight-stats {
        display: flex;
        gap: 8px;
        font-size: 0.7rem;
        color: #666;
    }

    .highlight-stats span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* 트렌딩 게임 섹션 */
    .trending-games-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    .trending-game-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 100%;
        min-height: 140px;
    }

    .trending-game-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .game-thumbnail {
        position: relative;
        height: 80px;
        overflow: hidden;
    }

    .game-rank {
        position: absolute;
        top: 8px;
        left: 8px;
        background: #ff4757;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .game-info {
        padding: 8px;
    }

    .game-info h4 {
        margin: 0 0 2px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
    }

    .game-category {
        margin: 0 0 4px 0;
        font-size: 0.7rem;
        color: #666;
    }

    .game-stats {
        display: flex;
        flex-direction: column;
        gap: 2px;
        font-size: 0.65rem;
        color: #666;
    }

    /* 신규 스트리머 섹션 */
    .new-streamers-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    .new-streamer-card {
        background: white;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        min-height: 80px;
    }

    .new-streamer-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .new-badge {
        position: absolute;
        top: -2px;
        right: -2px;
        background: #ff6b6b;
        color: white;
        padding: 2px 6px;
        border-radius: 8px;
        font-size: 0.6rem;
        font-weight: 600;
    }

    .new-streamer-card .streamer-info h4 {
        margin: 0 0 2px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
    }

    .follower-count {
        margin: 0 0 4px 0;
        font-size: 0.7rem;
        color: #666;
    }

    .stream-info {
        display: flex;
        flex-direction: column;
        gap: 1px;
        font-size: 0.65rem;
        color: #666;
    }

    /* 라이브 토크 섹션 */
    .live-talk-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    .talk-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .talk-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }


    .talk-thumbnail {
        position: relative;
        height: 100px;
        overflow: hidden;
    }

    .live-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background: #ff4757;
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    .talk-content {
        padding: 8px;
    }

    .talk-content h3,
    .talk-content h4 {
        margin: 0 0 6px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
        line-height: 1.2;
    }

    .talk-content p {
        margin: 0 0 6px 0;
        font-size: 0.75rem;
        color: #666;
        line-height: 1.3;
    }

    .talk-meta {
        display: flex;
            flex-direction: column;
        gap: 2px;
        font-size: 0.7rem;
        color: #666;
    }

    /* 이벤트 섹션 */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0.5rem;
        margin: 0.25rem auto;
        width: 100%;
        max-width: 1200px;
    }

    .event-card {
        background: white;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        border-left: 3px solid #667eea;
    }

    .event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .event-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #2ed573;
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
            font-size: 0.7rem;
        font-weight: 600;
    }

    .event-content h4 {
        margin: 0 0 6px 0;
        font-size: 0.8rem;
        font-weight: 600;
        color: #333;
        line-height: 1.2;
    }

    .event-content p {
        margin: 0 0 8px 0;
        font-size: 0.75rem;
        color: #666;
        line-height: 1.3;
    }

    .event-meta {
        display: flex;
        flex-direction: column;
        gap: 2px;
        font-size: 0.7rem;
        color: #666;
    }

    .participants {
        color: #667eea;
        font-weight: 500;
    }

    .prize {
        color: #ff6b6b;
        font-weight: 600;
    }

    /* 반응형 디자인 */
    @media (max-width: 1200px) {
        .hot-streamers-grid,
        .highlights-grid,
        .live-talk-grid,
        .clips-grid,
        .trending-games-grid,
        .new-streamers-grid,
        .events-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .category-streamers-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .hot-streamers-grid,
        .highlights-grid,
        .clips-grid,
        .category-streamers-grid,
        .trending-games-grid,
        .new-streamers-grid,
        .live-talk-grid,
        .events-grid {
            grid-template-columns: 1fr;
        }
        
        .category-tabs {
            justify-content: center;
        }
        
        /* 파트너 스트리머 반응형 */
        .partner-streamers-extended .partner-streamers-grid {
            grid-template-columns: repeat(4, minmax(120px, 1fr));
            gap: 0.6rem;
        }
        
        .streamer-card {
            padding: 0.8rem 0.4rem;
            min-width: 120px;
        }
        
        .partner-streamers-extended .streamer-avatar img {
            width: 95px !important;
            height: 95px !important;
            border: 3px solid rgba(255, 255, 255, 0.3) !important;
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
        }
        
        .streamer-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
        }
        
        .partner-streamers-extended .streamer-name {
            font-size: 0.9rem !important;
            font-weight: 700 !important;
            white-space: normal !important;
            word-break: break-word !important;
            display: block !important;
            margin: 0 !important;
            width: 100% !important;
        }
        
        .partner-streamers-extended .streamer-followers {
            font-size: 0.8rem !important;
            font-weight: 600 !important;
            white-space: normal !important;
            word-break: break-word !important;
            display: block !important;
            margin: 0 !important;
            width: 100% !important;
        }
    }

    /* 최종 왼쪽 사이드바 강제 고정 - 모든 스타일을 무시하고 적용 */
    html body .portal-container .left-sidebar,
    html body aside.left-sidebar,
    html body .left-sidebar,
    .portal-container .left-sidebar,
    aside.left-sidebar,
    .left-sidebar {
        position: sticky !important;
        top: 1rem !important;
        height: fit-content !important;
        z-index: 100 !important;
        background: white !important;
        width: 200px !important;
        max-width: 200px !important;
        min-width: 200px !important;
        border-radius: 16px !important;
        padding: 1rem !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(15px) !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        transform: none !important;
        transition: none !important;
    }

    /* 포인트 시스템 카드 스타일 - 진지하고 모던한 디자인 */
    .points-section {
        margin: 1rem 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .points-card {
        background: #1a1a1a;
        border-radius: 8px;
        padding: 16px 20px;
        border: 1px solid #2d2d2d;
        position: relative;
        transition: all 0.2s ease;
    }

    .points-card:hover {
        border-color: #404040;
        background: #1f1f1f;
    }

    .points-info {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .point-display {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .point-display .point-icon {
        color: #fbbf24;
        font-size: 1.2em;
        font-weight: 400;
        display: inline-block;
        margin-right: 2px;
    }

    .point-display .points {
        color: #f9fafb;
        font-size: 1.3em;
        font-weight: 600;
        letter-spacing: 0.3px;
        font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    }

    .attendance-link {
        display: flex;
        justify-content: center;
    }

    .attendance-link .quick-link {
        width: 100%;
        justify-content: center;
        background: #2d2d2d;
        border-radius: 8px;
        padding: 12px 16px;
        color: #e5e7eb;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        border: 1px solid #404040;
        display: flex;
        align-items: center;
    }

    .attendance-link .quick-link:hover {
        background: #374151;
        border-color: #6b7280;
        color: #f9fafb;
    }

    .attendance-link .quick-link i {
        margin-right: 8px;
        font-size: 1em;
        color: #9ca3af;
    }

    /* 모바일 반응형 */
    @media (max-width: 768px) {
        .points-section {
            margin: 0.8rem 0;
            gap: 6px;
        }

        .points-card {
            padding: 14px 16px;
        }

        .point-display {
            gap: 8px;
        }

        .point-display i {
            font-size: 1.1em;
        }

        .point-display .points {
            font-size: 1.2em;
        }

        .attendance-link .quick-link {
            padding: 10px 14px;
        }

        .attendance-link .quick-link i {
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        .points-card {
            padding: 12px 14px;
        }

        .point-display {
            gap: 6px;
        }

        .point-display i {
            font-size: 1em;
        }

        .point-display .points {
            font-size: 1.1em;
        }

        .attendance-link .quick-link {
            padding: 8px 12px;
            font-size: 0.9em;
        }
    }

    /* ============================================
       인기 클립 섹션 전용 스타일 - 최고 우선순위
       ============================================ */
    
    /* 섹션 배경 */
    .clips-section {
        position: relative !important;
        padding: 2rem !important;
        margin: 2rem 0 !important;
    }

    .clips-section::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 168, 76, 0.05) 100%) !important;
        border-radius: 16px !important;
        z-index: -1 !important;
    }

    /* 섹션 제목 */
    .clips-section .section-title {
        color: #ff6b6b !important;
        background: linear-gradient(135deg, #ff6b6b 0%, #ffa84c 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        margin-bottom: 2rem !important;
        font-size: 1.75rem !important;
        font-weight: 700 !important;
    }

    .clips-section .section-title i {
        background: linear-gradient(135deg, #ff6b6b 0%, #ffa84c 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    /* 클립 카드 기본 스타일 */
    .clips-section .content-card.clip-card,
    .content-card.clip-card {
        background: white !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        border: 2px solid rgba(255, 107, 107, 0.2) !important;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.1) !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .clips-section .content-card.clip-card:hover,
    .content-card.clip-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 12px 40px rgba(255, 107, 107, 0.25) !important;
        border-color: rgba(255, 107, 107, 0.5) !important;
    }

    /* 클립 이미지 영역 */
    .clips-section .clip-card-image,
    .clip-card .clip-card-image {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        overflow: hidden !important;
        background: #f8f9fa !important;
        flex-shrink: 0 !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .clip-card-image::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.2) 100%) !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
        pointer-events: none !important;
    }

    .clip-card:hover .clip-card-image::after {
        opacity: 1 !important;
    }

    .clips-section .clip-card-image img,
    .clip-card .clip-card-image img {
        width: 100% !important;
        height: 100% !important;
        min-height: 200px !important;
        max-height: 200px !important;
        object-fit: cover !important;
        display: block !important;
        transition: transform 0.4s ease !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .clips-section .clip-card:hover .clip-card-image img,
    .clip-card:hover .clip-card-image img {
        transform: scale(1.08) !important;
    }

    .clip-link {
        display: block !important;
        text-decoration: none !important;
    }

    /* 조회수 배지 */
    .clips-section .clip-view-count,
    .clip-card .clip-view-count {
        position: absolute !important;
        bottom: 10px !important;
        right: 10px !important;
        background: linear-gradient(135deg, #ff6b6b 0%, #ffa84c 100%) !important;
        color: white !important;
        padding: 6px 14px !important;
        border-radius: 20px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4) !important;
        z-index: 2 !important;
    }

    /* 클립 콘텐츠 영역 */
    .clips-section .clip-card-content,
    .clip-card .clip-card-content {
        padding: 1.25rem !important;
        background: white !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .clips-section .clip-card-title,
    .clip-card .clip-card-title {
        margin: 0 0 0.75rem 0 !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        color: #2c3e50 !important;
    }

    .clips-section .clip-title-link,
    .clip-card .clip-title-link {
        color: #2c3e50 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        display: block !important;
    }

    .clips-section .clip-card:hover .clip-title-link,
    .clip-card:hover .clip-title-link {
        color: #ff6b6b !important;
    }

    .clips-section .clip-card-description,
    .clip-card .clip-card-description {
        color: #7f8c8d !important;
        font-size: 0.9rem !important;
        margin: 0.5rem 0 !important;
    }

    .clips-section .clip-card-meta,
    .clip-card .clip-card-meta {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        border-top: 2px solid rgba(255, 107, 107, 0.15) !important;
    }

    .clips-section .clip-uploader,
    .clip-card .clip-uploader {
        color: #34495e !important;
        font-weight: 600 !important;
        font-size: 0.9rem !important;
    }

    .clips-section .clip-verified,
    .clip-card .clip-verified {
        color: #ff6b6b !important;
        margin-right: 4px !important;
    }

    .clips-section .clip-upload-time,
    .clip-card .clip-upload-time {
        color: #95a5a6 !important;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
    }

