:root {
    --primary-color: #00d4ff;
    --secondary-color: #1a2a3a;
    --background-dark: #182c40;
    --text-light: #f0f0f0;
    --text-dark: #333;
    --text-medium: #666;
    --accent-yellow: #fff700;
    --accent-red: #ff4d4d;
    --accent-purple: #cc66ff;
    --notice-warning-bg: #fff3cd;
    --notice-warning-border: #ffeaa7;
    --notice-warning-text: #856404;
    --notice-info-bg: #cfe2ff;
    --notice-info-border: #b6d4fe;
    --notice-info-text: #004085;
}

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

body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-dark);
    margin: auto;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
    color: var(--text-dark);
    padding: 15px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.gallery-container {
    margin-bottom: 15px;
    width: 100%;
    max-width: none;
    padding: 0 5px;
    box-sizing: border-box;
}

.main-image {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.795);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 30px auto;
}

.thumbnail-scroll {
    max-width: 80%;
    margin: auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.thumbnail-scroll::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.thumbnail {
    flex: 0 0 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.game-description {
    font-size: 18px;
    color: var(--text-medium);
    width: 70%;
    margin: 0 auto 5px auto;
    padding: 0 12px;
    box-sizing: border-box;
    max-width: none;
}

.development-notice {
    font-size: 14px;
    color: var(--notice-warning-text);
    background-color: var(--notice-warning-bg);
    border: 1px solid var(--notice-warning-border);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    line-height: 1.4;
    width: 70%;
    margin: 0 auto 15px auto;
    max-width: none;
    box-sizing: border-box;
}

.mobile-notice {
    font-size: 14px;
    color: var(--notice-info-text);
    background-color: var(--notice-info-bg);
    border: 1px solid var(--notice-info-border);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    line-height: 1.4;
    width: 70%;
    margin: 0 auto 15px auto;
    max-width: none;
    box-sizing: border-box;
}

/* Demo Button */
.demo-button {
    display: block;
    margin: auto;
    width: 25%;
    max-width: none;
    padding: 15px 10px;
    background: var(--primary-color);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    box-sizing: border-box;
    outline: none;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3), 0 0 0 3px rgba(0, 212, 255, 0.5);
}

.demo-button:active {
    transform: translateY(0);
}

.last-updated {
    font-size: 13px;
    color: var(--text-medium);
    margin-top: 15px;
}

.last-updated a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.last-updated a:hover {
    text-decoration: underline;
}

/* Standardized Nested List */
.nested-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.nested-list li {
    background: none !important;
    border: none !important;
    padding: 2px 0 !important;
    margin-bottom: 2px !important;
    color: var(--text-light) !important;
    font-size: 14px !important;
    transition: none !important;
}

/* Section Common Styles */
.bugs, .updates, .feedback {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.bugs h1, .updates h1, .feedback h1 {
    font-size: 32px;
    margin-bottom: 0px;
    color: var(--text-light);
}

/* Dashboard Grids (Roadmap and Updates) */
.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 10px;
    text-align: left;
}

.updates-grid {
    display: grid;
    grid-template-columns: minmax(0, 600px);
    justify-content: center;
    gap: 20px;
    text-align: left;
}

.roadmap-card, .update-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-top: 4px solid #444;
    transition: transform 0.3s ease, background 0.3s ease;
}

.roadmap-card:hover, .update-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.roadmap-card h2, .update-card h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-card.bugs-card {
    border-top-color: var(--accent-red);
}

.roadmap-card.planned-card {
    border-top-color: var(--accent-yellow);
}

.update-card {
    border-top-color: var(--primary-color);
}

/* Lyket Integration Styles */
.roadmap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.roadmap-item span {
    flex: 1;
}

/* Vertical Stack ONLY for Roadmap Items */
.roadmap-item [data-lyket-type] button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
}

.roadmap-item [data-lyket-type] button span {
    margin: 0 !important;
    font-size: 11px !important;
    opacity: 0.8;
}

.update-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.update-card-header h2 {
    margin-bottom: 0;
}

/* General Lyket Button Adjustments */
[data-lyket-type] {
    font-size: 14px;
    background: transparent !important;
}

[data-lyket-type] button {
    background: transparent !important;
    border: none !important;
    padding: 5px !important;
    line-height: 1 !important;
    cursor: pointer;
}

/* Ensure buttons don't shrink on mobile */
[data-lyket-type="updown"] {
    min-width: 70px;
    display: flex;
    justify-content: flex-end;
}

/* Change Log Collapsible Styles */
.changelog-container {
    position: relative;
    max-height: 400px;
    overflow: hidden;
    padding-top: 10px; /* Room for hover translateY animation */
    transition: max-height 0.5s ease-in-out;
}

.changelog-container.expanded {
    max-height: 2000px;
}

.changelog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--secondary-color));
    pointer-events: none;
}

.show-more-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--primary-color);
    color: #1a1a1a;
}

/* Feedback Section */
.feedback-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    padding-top: 30px; /* 10px extra to match the padding-top of other sections + 20px standard padding */
    border-radius: 8px;
    border-top: 4px solid var(--accent-purple); /* Using new purple accent */
    max-width: 600px;
    margin: 0 auto;
    transition: background 0.3s ease;
}

.feedback-card iframe {
    background: transparent !important;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 15px 0;
        min-height: auto;
    }

    .gallery-container {
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .game-description,
    .development-notice,
    .mobile-notice {
        font-size: 14px;
        margin-bottom: 5px;
        padding: 0 10px;
    }

    .main-image {
        max-height: 250px;
    }

    .thumbnail {
        flex: 0 0 55px;
        height: 42px;
    }

    .thumbnail-scroll {
        gap: 10px;
        padding: 8px 0;
    }

    .demo-button {
        padding: 12px 8px;
        font-size: 14px;
        display: block;
        max-width: none;
        box-sizing: border-box;
    }

    .updates, .bugs, .feedback {
        padding: 40px 0;
    }

    .updates h1, .bugs h1, .feedback h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .updates li, .bugs li {
        font-size: 14px;
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .show-more-btn {
        font-size: 14px;
    }

    .feedback-card {
        padding: 15px;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 8px;
    }

    .hero {
        padding: 10px 0;
    }

    .gallery-container {
        padding: 0;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .game-description {
        font-size: 13px;
        margin-bottom: 8px;
        padding: 0 3px;
        width: 100%;
    }

    .development-notice,
    .mobile-notice {
        font-size: 11px;
        padding: 8px 8px;
        margin-bottom: 8px;
        width: 100%;
        border-radius: 4px;
    }

    .main-image {
        max-height: 150px;
    }

    .thumbnail {
        flex: 0 0 45px;
        height: 50px;
    }

    .thumbnail-scroll {
        gap: 6px;
        padding: 5px 0;
    }

    .demo-button {
        padding: 10px 12px;
        font-size: 12px;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .updates, .bugs, .feedback {
        padding: 30px 0;
    }

    .updates h1, .bugs h1, .feedback h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .show-more-btn {
        font-size: 12px;
        padding: 8px 15px;
    }

    .feedback-card {
        padding: 10px;
    }

    .updates li, .bugs li {
        font-size: 13px;
        padding: 10px 10px;
        margin-bottom: 8px;
        border-left-width: 3px;
    }

    footer {
        padding: 20px 0;
    }

    footer p {
        font-size: 12px;
    }
}
    padding: 20px 0;
    }

    footer p {
        font-size: 12px;
    }
}
nt-size: 12px;
    }
}
