/* ========================================
   COMFORTABLE BLUE THEME - Clean & Elegant Redesign
   Color Palette:
   - Primary: #4A90E2 (Soft Blue)
   - Secondary: #7B9ACC (Light Blue)
   - Accent: #6BC0FF (Sky Blue)
   - Background: #F7F9FC (Light Gray Blue)
   - Card BG: #FFFFFF
   - Text: #2C3E50 (Dark Blue Gray)
   ======================================== */

body {
    max-width: 660px;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin: 0 auto;
    padding: 0;
    background: #F7F9FC;
    color: #2C3E50;
}

header {
    width: 100%;
    max-width: 660px;
    display: flex;
    background: linear-gradient(135deg, #4A90E2 0%, #7B9ACC 100%);
    color: #ffffff;
    height: 6vh;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
    border-bottom: 3px solid #6BC0FF;
}

#nav-open {
    display: block;
    position: relative;   
    height: 3vh;
}

#nav-close {
    display: none;
    position: relative;   
    height: 4vh;
}

.lpscn-nav-logo img {
    height: 4vh;
    display: block;
}

.lpscn-navbar {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0px 20px;
    position: relative;
}

.lpscn-menu {
    display: flex;
    width: 30%;
    flex-direction: column;
    gap: 20px;
    background: #4A90E2;
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 6vh;
    right: 0px;
    padding: 35px 1rem;
    z-index: 10;
    margin: 0;
    list-style-type: none;
    display: none;
    box-shadow: -5px 0 15px rgba(74, 144, 226, 0.2);
    border-left: 3px solid #6BC0FF;
}

.lpscn-menu li {
    position: relative;
}

.lpscn-menu li a:hover {
    color: #FFE66D;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    border-radius: 8px;
}

.lpscn-menu.open {
    display: flex;
    flex-direction: column;
}

.lpscn-menu.open #nav-open {
    display: none;
}

.lpscn-menu.open #nav-close {
    display: block;
}

.lpscn-menu li a {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
}

#lpscn-menu {
    animation: fadeIn 0.1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0.3;
        width: 0%;
    }
    100% {
        opacity: 1;
        width: 30%;
    }
}

.lpscn-game-item {
    border-radius: 16px;
    position: relative;
    padding: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid #E8F2FC;
}

.lpscn-game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
    border-color: #4A90E2;
}

.lpscn-game-item a {
    text-decoration: none;
}

.lpscn-game-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.lpscn-game-cover img:hover {
    transform: scale(1.03);
}

.lpscn-game-cover-recommend img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.lpscn-game-item h3 {
    color: #4A90E2;
    margin: 10px 0px 5px 0px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.lpscn-game-item p {
    color: #2D3436;
    margin: 0px;
    font-size: 1rem;
}

.lpscn-game-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 5px;
}

.lpscn-game-info p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4.5em;
    font-size: 0.95rem;
    color: #636E72;
    font-weight: 500;
}

.lpscn-game-info p:last-child { 
    font-size: 0.8rem;
    color: #B2BEC3;
}

.common-game-right {
    display: flex;
    width: 20%;
    height: 30px;
    background: #4ECDC4;
    border-radius: 20px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.lpscn-recomed-div {
    margin: 0px 10px;
    border-radius: 5px;
    padding: 10px 0px;
}

.lpscn-detail-recomed-div {
    margin: 10px 20px;
    border-radius: 5px;
    padding: 10px 0px;
}

.lpscn-common-recommend-title {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background: linear-gradient(135deg, #E8F2FC 0%, #F0F7FF 100%);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 3px 8px rgba(74, 144, 226, 0.1);
}

.lpscn-common-recommend-title p {
    color: #2C3E50;
    font-size: 1rem;
    margin: 10px 0px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.lpscn-common-recommend-title img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
}

.lpscn-common-recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.lpscn-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.lpscn-game-big-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.game-big-3 {
    grid-column: span 3;
    grid-row: span 3;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #4ECDC4;
    text-align: center;
    border-top: 3px solid #6EE7DE;
}

.lpscn-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lpscn-footer-links a {
    font-size: 0.7em;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lpscn-footer-links a:hover {
    text-decoration: underline;
    color: #FFE66D;
}

footer .lpscn-copyright {
    font-size: 0.8em;
    color: #ffffff;
    margin: 10px 0px;
    font-weight: bold;
}

#back-top,
#back-home {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#flow {
    position: fixed;
    bottom: 10rem;
    right: 0.6rem;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #FF6B6B;
    padding: 0.5rem;
    gap: 10PX;
    border-radius: 10rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
    border: 2px solid #FF8E8E;
}

#flow:hover {
    background: #4ECDC4;
    box-shadow: 0 6px 16px rgba(78, 205, 196, 0.4);
    border-color: #6EE7DE;
}

.lpscn-game-detail-title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 1rem;
    border-radius: 10px;
    gap: 15px;
}

.lpscn-game-detail-img {
    width: 105%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid #FFE66D;
}

.lpscn-game-detail-img img {
    width: 100%;
    border-radius: 13px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    display: block;
}

.lpscn-detail-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 10px;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 800px;
    border: 3px solid #FFE66D;
}

.lpscn-detail-info h2 {
    color: #FF6B6B;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

.lpscn-detail-info p {
    color: #636E72;
    font-size: 1rem;
    margin: 0;
    line-height: 1.8;
}

.lpscn-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.lpscn-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 20px;
    background: #4ECDC4;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
    border: 3px solid #6EE7DE;
}

.lpscn-game-instructions p {
    color: #ffffff;
    line-height: 1.5rem;
    font-size: 1rem;
}

.lpscn-game-gameplay-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.lpscn-game-gameplay-button:hover {
    transform: scale(1.08);
}

.lpscn-game-gameplay-button img {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 107, 0.3));
}

.lpscn-game-gameplay-button p {
    color: #fff;
    margin: 0px;
}

.lpscn-game-iframe {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
    position: relative;
}

#iframe-menu-btn {
    margin-top: 20px;
    margin-left: 60px;
    position: absolute;
    height: 40px;
    height: 40px;
}

#iframe-back-btn {
    margin-top: 20px;
    margin-left: 20px;
    position: absolute;
    height: 50px;
    height: 50px;
}

.lpscn-news-detail {
    color: #2D3436;
    text-align: start;
    padding: 1rem;
    margin-top: 30px;
}

.lpscn-news-detail img {
    width: 100%;
    object-fit: contain;
}

.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.error-page h1 {
    font-size: 2em;
    color: #FF6B6B;
}

.error-page p {
    font-size: 1.4em;
    color: #2D3436;
    padding: 1rem;
}

.error-page img {
    width: 100%;
    padding: 2rem 1rem;
}

.lpscn-game-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: -10px;
    left: -10px;
}

.lpscn-game-mark img {
    width: 50px;
    height: 25px;
}

.lpscn-game-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: 0px;
    left: -10px;
}

.lpscn-game-new img {
    width: 50px;
    height: 50px;
}

.lpscn-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0px 10px;
}

#lpscn-game-body {
    margin-top: 30px;
}

.iframe-menu {
    display: flex;
    width: 60%;
    flex-direction: column;
    gap: 35px;
    background: #ffffff;
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 0vh;
    right: 0px;
    z-index: 8;
    margin: 0;
    list-style-type: none;
    display: none;
    padding: 10px 10px;
    border-left: 3px solid #FF6B6B;
    box-shadow: -4px 0 12px rgba(255, 107, 107, 0.2);
}

.iframe-menu.open {
    display: flex;
    flex-direction: column;
}

.iframe-menu li a {
    font-size: 1rem;
    color: #4ECDC4;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.iframe-menu li a:hover {
    color: #FF6B6B;
    transform: translateX(5px);
}

.iframe-list-item a {
    display: flex;
    flex-direction: row;
    margin: 0px;
    justify-content: space-between;
    align-items: center;
}

.iframe-list-item a img {
    margin: 0px;
    height: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.iframe-list-item a p {
    margin: 0px 20px;
    position: relative;
}

.iframe-list-item-close a {
    display: flex;
    flex-direction: row;
    margin: 0px;
    justify-content: end;
    align-items: center;
}

.iframe-list-item-close img {
    margin: 0px;
    height: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

#iframe-close-btn {
    right: 0px;
    top: 0px;
}

.lpscn-search-box {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 300px;
    margin: 0 20px;
}

.lpscn-search-box input {
    width: 100%;
    padding: 8px 40px 8px 15px;
    border: 3px solid #FFE66D;
    border-radius: 25px;
    background: #ffffff;
    color: #2D3436;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.lpscn-search-box input:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.lpscn-search-icon {
    position: absolute;
    right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lpscn-search-icon:hover {
    transform: scale(1.1);
    stroke: #FF6B6B;
}

.lpscn-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 3px solid #FFE66D;
    border-radius: 12px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
}

.lpscn-search-results.active {
    display: block;
}

.lpscn-search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #FFF8F0;
}

.lpscn-search-result-item:last-child {
    border-bottom: none;
}

.lpscn-search-result-item:hover {
    background-color: #FFF8F0;
}

.lpscn-search-result-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 10px;
    object-fit: cover;
}

.lpscn-search-result-item .result-info {
    flex: 1;
}

.lpscn-search-result-item .result-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #FF6B6B;
}

.lpscn-search-result-item .result-info p {
    margin: 5px 0 0;
    font-size: 0.8rem;
    color: #636E72;
}

.lpscn-newsletter-section {
    margin: 30px 10px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #4ECDC4 0%, #FF6B6B 100%);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
    border: 3px solid #6EE7DE;
}

.lpscn-newsletter-content {
    text-align: center;
}

.lpscn-newsletter-content h3 {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: 1.3rem;
    font-weight: bold;
}

.lpscn-newsletter-content > p {
    color: #ffffff;
    margin: 0 0 20px;
    font-size: 0.95rem;
    opacity: 0.95;
}

.lpscn-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.lpscn-newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 3px solid #ffffff;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    background: #ffffff;
    transition: all 0.3s ease;
}

.lpscn-newsletter-form input:focus {
    border-color: #FFE66D;
    box-shadow: 0 0 10px rgba(255, 230, 109, 0.3);
}

.lpscn-newsletter-form button {
    padding: 12px 30px;
    background: #FFE66D;
    color: #2D3436;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lpscn-newsletter-form button:hover {
    background: #FFD93D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 230, 109, 0.4);
}

#newsletter-message {
    margin-top: 15px;
    color: #ffffff;
    font-size: 0.9rem;
    min-height: 20px;
}

.lpscn-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.lpscn-rating .star {
    font-size: 1.5rem;
    color: #DDD;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lpscn-rating .star.active,
.lpscn-rating .star:hover {
    color: #FFE66D;
}

.lpscn-rating-text {
    margin-left: 10px;
    color: #636E72;
    font-size: 0.9rem;
}

.lpscn-comments-section {
    margin: 20px 0;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 3px solid #FFE66D;
}

.lpscn-comments-section h3 {
    color: #FF6B6B;
    margin: 0 0 15px;
    font-size: 1.1rem;
}

.lpscn-comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.lpscn-comment-form input,
.lpscn-comment-form textarea {
    padding: 10px 15px;
    border: 3px solid #FFE66D;
    border-radius: 12px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
    background: #FFF8F0;
}

.lpscn-comment-form input:focus,
.lpscn-comment-form textarea:focus {
    border-color: #FF6B6B;
}

.lpscn-comment-form textarea {
    min-height: 80px;
    resize: vertical;
}

.lpscn-comment-form button {
    padding: 10px 20px;
    background: #FF6B6B;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.lpscn-comment-form button:hover {
    background: #4ECDC4;
    transform: translateY(-2px);
}

.lpscn-comment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lpscn-comment {
    padding: 15px;
    background: #FFF8F0;
    border-radius: 12px;
    border-left: 4px solid #FF6B6B;
}

.lpscn-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.lpscn-comment-author {
    font-weight: bold;
    color: #FF6B6B;
    font-size: 0.95rem;
}

.lpscn-comment-date {
    color: #B2BEC3;
    font-size: 0.8rem;
}

.lpscn-comment p {
    margin: 0;
    color: #636E72;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .lpscn-search-box {
        max-width: 150px;
        margin: 0 10px;
    }
    
    .lpscn-newsletter-form {
        flex-direction: column;
    }
    
    .lpscn-newsletter-form button {
        width: 100%;
    }
}

.lpscn-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
}

.lpscn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
}

.lpscn-theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   CATEGORY NAVIGATION STYLES
   ======================================== */

.lpscn-category-nav-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    padding: 10px 15px 10px 20px;
    overflow: hidden;
    box-sizing: border-box;
    background: white;
    margin: 10px 0px;
    border-radius: 10px;
    border: 2px solid #E8F2FC;
    gap: 12px;
}

.lpscn-category-nav-header {
    flex-shrink: 0;
}

.lpscn-category-nav-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FF6B6B;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.lpscn-category-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 10px;
    padding: 5px 0;
    scroll-behavior: smooth;
    width: 100%;
}

.lpscn-category-nav::-webkit-scrollbar {
    display: none;
}

.lpscn-cat-nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #E8F2FC 0%, #F0F7FF 100%);
    border-radius: 20px;
    text-decoration: none;
    color: #2C3E50;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(74, 144, 226, 0.1);
    border: 2px solid transparent;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.lpscn-cat-nav-item:hover {
    background: #FFD93D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 230, 109, 0.4);
}

.lpscn-cat-nav-special {
    background: linear-gradient(135deg, #4A90E2, #6BC0FF);
    color: white;
    box-shadow: 0 3px 8px rgba(74, 144, 226, 0.2);
}

.lpscn-cat-nav-special:hover {
    background: linear-gradient(135deg, #FF8E8E, #FF6B6B);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.lpscn-cat-nav-arrow {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.lpscn-cat-nav-arrow:hover {
    background: linear-gradient(135deg, #FF8E8E, #FF6B6B);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.lpscn-cat-nav-arrow svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

/* ========================================
   DARK MODE STYLES FOR CATEGORY NAVIGATION
   ======================================== */

body.dark-mode .lpscn-category-nav-title {
    color: #FFE66D;
}

/* ========================================
   INTRODUCTION SECTION STYLES
   ======================================== */

.lpscn-intro-section {
    max-width: 660px;
    margin: 20px auto;
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #FFF8F0 100%);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid #FFE66D;
}

.lpscn-intro-section h2 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF6B6B;
    letter-spacing: 0.3px;
}

.lpscn-intro-section p {
    margin: 0 0 10px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #636E72;
}

.lpscn-intro-section p:last-child {
    margin-bottom: 0;
}

.lpscn-intro-section strong {
    color: #4ECDC4;
    font-weight: 600;
}

body.dark-mode .lpscn-intro-section {
    background: linear-gradient(135deg, #636E72 0%, #2D3436 100%);
    border-color: #B2BEC3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body.dark-mode .lpscn-intro-section h2 {
    color: #FFE66D;
}

body.dark-mode .lpscn-intro-section p {
    color: #B2BEC3;
}

body.dark-mode .lpscn-intro-section strong {
    color: #6EE7DE;
}

body.dark-mode .lpscn-category-nav {
    background: transparent;
}

body.dark-mode .lpscn-cat-nav-item {
    background: #636E72;
    color: #DFE6E9;
    border-color: #B2BEC3;
}

body.dark-mode .lpscn-cat-nav-item:hover {
    background: #7D8A90;
    box-shadow: 0 5px 15px rgba(255, 230, 109, 0.2);
}

body.dark-mode .lpscn-cat-nav-special {
    background: linear-gradient(135deg, #636E72, #7D8A90);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .lpscn-cat-nav-special:hover {
    background: linear-gradient(135deg, #7D8A90, #636E72);
}

body.dark-mode .lpscn-cat-nav-arrow {
    background: #636E72;
    border-color: #B2BEC3;
}

body.dark-mode .lpscn-cat-nav-arrow:hover {
    background: #7D8A90;
}

body.dark-mode .lpscn-cat-nav-arrow svg {
    stroke: #DFE6E9;
}

/* ========================================
   DARK MODE STYLES
   ======================================== */

body.dark-mode {
    background: #2D3436;
    color: #DFE6E9;
}

body.dark-mode header {
    background: #636E72;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-bottom-color: #B2BEC3;
}

body.dark-mode .lpscn-menu {
    background: #636E72;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    border-left-color: #B2BEC3;
}

body.dark-mode .lpscn-game-item {
    background: #636E72;
    border-color: #FFE66D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .lpscn-game-item:hover {
    box-shadow: 0 8px 20px rgba(255, 230, 109, 0.3);
}

body.dark-mode .lpscn-game-item h3 {
    color: #FFE66D;
}

body.dark-mode .lpscn-game-info p {
    color: #B2BEC3;
}

body.dark-mode .lpscn-common-recommend-title {
    background: #FFE66D;
}

body.dark-mode .lpscn-common-recommend-title p {
    color: #2D3436;
}

body.dark-mode .lpscn-search-box input {
    background: #636E72;
    color: #DFE6E9;
    border-color: #FFE66D;
}

body.dark-mode .lpscn-search-results {
    background: #636E72;
    border-color: #FFE66D;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .lpscn-search-result-item {
    border-bottom-color: #2D3436;
}

body.dark-mode .lpscn-search-result-item:hover {
    background-color: #2D3436;
}

body.dark-mode .lpscn-search-result-item .result-info h4 {
    color: #FFE66D;
}

body.dark-mode .lpscn-search-result-item .result-info p {
    color: #B2BEC3;
}

body.dark-mode .lpscn-newsletter-section {
    background: linear-gradient(135deg, #636E72 0%, #2D3436 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: #B2BEC3;
}

body.dark-mode .lpscn-newsletter-form input {
    background: #636E72;
    color: #DFE6E9;
    border-color: #DFE6E9;
}

body.dark-mode .lpscn-newsletter-form input:focus {
    border-color: #FFE66D;
}

body.dark-mode footer {
    background: #636E72;
    border-top-color: #B2BEC3;
}

body.dark-mode .lpscn-footer-links a {
    color: #DFE6E9;
}

body.dark-mode .lpscn-footer-links a:hover {
    color: #FFE66D;
}

body.dark-mode footer .lpscn-copyright {
    color: #DFE6E9;
}

body.dark-mode #flow {
    background: #636E72;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: #B2BEC3;
}

body.dark-mode #flow:hover {
    background: #4ECDC4;
    border-color: #6EE7DE;
}

body.dark-mode .lpscn-game-instructions {
    background: #636E72;
    border-color: #B2BEC3;
}

body.dark-mode .lpscn-game-detail-title {
    background: transparent;
}

body.dark-mode .lpscn-detail-info {
    background: #636E72;
    border-color: #FFE66D;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body.dark-mode .lpscn-detail-info h2 {
    color: #FFE66D;
}

body.dark-mode .lpscn-detail-info p {
    color: #B2BEC3;
}

body.dark-mode .lpscn-comments-section {
    background: #636E72;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: #FFE66D;
}

body.dark-mode .lpscn-comments-section h3 {
    color: #FFE66D;
}

body.dark-mode .lpscn-comment-form input,
body.dark-mode .lpscn-comment-form textarea {
    background: #2D3436;
    color: #DFE6E9;
    border-color: #FFE66D;
}

body.dark-mode .lpscn-comment-form input:focus,
body.dark-mode .lpscn-comment-form textarea:focus {
    border-color: #FF6B6B;
}

body.dark-mode .lpscn-comment {
    background: #2D3436;
    border-left-color: #FF6B6B;
}

body.dark-mode .lpscn-comment-author {
    color: #FFE66D;
}

body.dark-mode .lpscn-comment p {
    color: #B2BEC3;
}

body.dark-mode .lpscn-news-detail {
    color: #DFE6E9;
}

body.dark-mode .error-page h1 {
    color: #FF6B6B;
}

body.dark-mode .error-page p {
    color: #DFE6E9;
}

body.dark-mode .iframe-menu {
    background: #636E72;
    border-left-color: #FF6B6B;
}

body.dark-mode .iframe-menu li a {
    color: #4ECDC4;
}

body.dark-mode .iframe-menu li a:hover {
    color: #FFE66D;
}

body.dark-mode .recommend-item {
    background: #636E72;
    border-color: #FFE66D;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.dark-mode .recommend-item:hover {
    box-shadow: 0 8px 20px rgba(255, 230, 109, 0.3);
}

body.dark-mode .recommend-item-info h3 {
    color: #FFE66D;
}

body.dark-mode .recommend-item-info p {
    color: #B2BEC3;
}

body.dark-mode .lpscn-game-title p {
    color: #DFE6E9;
}

body.dark-mode .lpscn-nav-game-info p {
    color: #DFE6E9;
}

body.dark-mode .common-game-right {
    background: #4ECDC4;
}

body.dark-mode .lpscn-game-gameplay-button {
    background: transparent;
}

body.dark-mode .lpscn-game-mark p {
    color: #DFE6E9;
}

body.dark-mode .lpscn-game-new p {
    color: #DFE6E9;
}

@media (prefers-color-scheme: dark) {
    body:not(.light-mode) {
        background: #2D3436;
        color: #DFE6E9;
    }
}

.lpscn-game-instructions {
    margin: 20px;
    padding: 25px;
    background: #4ECDC4;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
    border: 3px solid #6EE7DE;
}

.lpscn-game-instructions h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 20px;
    font-weight: bold;
    text-align: center;
}

.instructions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instruction-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.instruction-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.instruction-item h4 {
    color: #FFE66D;
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-weight: bold;
}

.instruction-item p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .lpscn-game-instructions {
        margin: 15px 10px;
        padding: 20px 15px;
    }
    
    .lpscn-game-instructions h3 {
        font-size: 1.2rem;
    }
    
    .instruction-item h4 {
        font-size: 1rem;
    }
    
    .instruction-item p {
        font-size: 0.9rem;
    }
}

.lpscn-blog-header {
    margin: 20px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    border: 3px solid #FF8E8E;
}

.lpscn-blog-header h1 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 10px;
    font-weight: bold;
}

.lpscn-blog-header p {
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
}

.lpscn-blog-list {
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lpscn-blog-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #FFE66D;
}

.lpscn-blog-item:hover {
    transform: translateX(5px) rotate(-0.5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
    border-color: #FF6B6B;
}

.lpscn-blog-item-title {
    color: #FF6B6B;
    font-size: 1.2rem;
    margin: 0 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.lpscn-blog-item:hover .lpscn-blog-item-title {
    color: #4ECDC4;
}

.lpscn-blog-item-content {
    color: #636E72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.dark-mode .lpscn-blog-header {
    background: linear-gradient(135deg, #636E72 0%, #2D3436 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: #B2BEC3;
}

body.dark-mode .lpscn-blog-item {
    background: #636E72;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: #FFE66D;
}

body.dark-mode .lpscn-blog-item:hover {
    box-shadow: 0 8px 20px rgba(255, 230, 109, 0.3);
    border-color: #FF6B6B;
}

body.dark-mode .lpscn-blog-item-title {
    color: #FFE66D;
}

body.dark-mode .lpscn-blog-item:hover .lpscn-blog-item-title {
    color: #4ECDC4;
}

body.dark-mode .lpscn-blog-item-content {
    color: #B2BEC3;
}

@media (max-width: 768px) {
    .lpscn-blog-header {
        margin: 15px 10px;
        padding: 25px 15px;
    }
    
    .lpscn-blog-header h1 {
        font-size: 1.5rem;
    }
    
    .lpscn-blog-header p {
        font-size: 0.9rem;
    }
    
    .lpscn-blog-list {
        margin: 15px 10px;
    }
    
    .lpscn-blog-item {
        padding: 15px;
    }
    
    .lpscn-blog-item-title {
        font-size: 1.1rem;
    }
    
    .lpscn-blog-item-content {
        font-size: 0.9rem;
    }
}
