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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Icon fonts */
i[class^="icon-"] {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.icon-home { background-image: url('../fonts/home.svg'); }
.icon-search { background-image: url('../fonts/search.svg'); }
.icon-gamepad { background-image: url('../fonts/gamepad.svg'); }
.icon-fire { background-image: url('../fonts/fire.svg'); }
.icon-puzzle { background-image: url('../fonts/puzzle.svg'); }
.icon-star { background-image: url('../fonts/star.svg'); }
.icon-menu { background-image: url('../fonts/menu.svg'); }
.icon-close { background-image: url('../fonts/close.svg'); }
.icon-play { background-image: url('../fonts/play.svg'); }
.icon-heart { background-image: url('../fonts/heart.svg'); }
.icon-image { background-image: url('../fonts/image.svg'); }
.icon-global { background-image: url('../fonts/global.svg'); }
.icon-tags { background-image: url('../fonts/tags.svg'); }

.app-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

/* Left Sidebar */
.left-sidebar {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

/* Mobile Header - hidden on desktop */
.mobile-header,
.mobile-search-panel {
    display: none;
}

.sidebar-header {
    position: relative;
}

.sidebar-header .logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.menu-toggle i {
    width: 20px;
    height: 20px;
}

.sidebar-overlay {
    display: none;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    border-radius: 12px;
    transition: all 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: linear-gradient(135deg, rgba(0,217,255,0.2), rgba(0,255,136,0.2));
    color: #fff;
}

.sidebar-nav i {
    font-size: 18px;
    width: 24px;
}

.sidebar-search {
    margin-top: 40px;
}

.sidebar-search form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 5px;
}

.sidebar-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    outline: none;
}

.sidebar-search button {
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #1a1a2e;
}

.sidebar-search button i {
    filter: invert(1);
}

/* Main Content */
.main-content {
    padding: 40px;
    overflow-y: auto;
}

.ad-banner {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 30px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 40px;
}

.hero-card {
    height: 400px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.hero-overlay .badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.play-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #1a1a2e;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.05);
}

/* Games Grid */
.games-grid {
    margin-top: 40px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.game-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
}

.card-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(0,217,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s;
    opacity: 0;
}

.game-card:hover .overlay-play {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.card-info {
    padding: 15px;
}

.card-info h4 {
    font-size: 14px;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-info .category {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Wrapper */
.wrapper {
    margin: 0 auto;
    max-width: 1250px;
    padding: 15px 10px;
}

/* Game IFrame Container (same as game203) */
.game-iframe-container {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.game-play-box {
    width: 100%;
    height: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.game-play-box .game-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(20px);
    z-index: -1;
}

.game-play-box .game-img {
    width: 180px;
    height: 180px;
    border-radius: 30px;
}

.game-play-box .start-game-btn {
    margin-top: 30px;
    background: linear-gradient(180deg, #fd0, #ff9012);
    box-shadow: 12px 14px 15px -1px #0003, -20px -11px 15px -1px #fff6;
    color: #0a0a0a;
    height: 60px;
    box-sizing: border-box;
    font-weight: 700;
    width: 290px;
    border-radius: 30px;
    display: inline-flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    border: 3px solid #fff;
    gap: 10px;
    transition: transform 0.2s;
}

.game-play-box .start-game-btn:hover {
    transform: scale(1.05);
}

.game-play-box .game-title {
    font-size: 16px;
    margin-top: 15px;
    color: #fff;
}

.triangle-icon {
    width: 20px;
    height: 20px;
}

.game-description {
    margin: 15px 0;
    font-size: 18px;
    line-height: 25px;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
}

/* Related Games */
.related-games {
    margin-bottom: 40px;
}

.related-games h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

/* Back Icon */
.back-icon {
    text-decoration: none;
    border-radius: 50%;
    position: fixed;
    top: 70px;
    left: 20px;
    z-index: 999999999;
    background-color: rgba(0,255,255,0.9);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-icon img {
    border-radius: 50%;
}

/* Foot Description */
.foot-desc {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
}

.billboard-text-panel h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00d9ff;
}

.billboard-text-panel p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* Comments Box */
#comments-box {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
}

.comments-title {
    font-size: 20px;
    margin: 30px 0 20px;
    color: #00ff88;
}

.social-share {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 30px;
}

.social-share li a {
    display: block;
}

.share-item__icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.3s;
}

.share-item__icon:hover {
    background: rgba(255,255,255,0.2);
}

.share-item__icon i {
    font-size: 18px;
}

.share-item__icon .fa-facebook-f {
    color: #1877f2;
}

.share-item__icon .fa-x-twitter {
    color: #000;
}

.share-item__icon .fa-linkedin-in {
    color: #0077b5;
}

.share-item__icon .fa-whatsapp {
    color: #25d366;
}

/* Comment Form */
.reply-respond h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.comment-form p {
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.7);
}

.comment-form textarea,
.comment-form input {
    width: 95%;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.comment-form textarea:focus,
.comment-form input:focus {
    outline: none;
    border-color: #00d9ff;
}

.submit {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit:hover {
    transform: scale(1.05);
}

.comment-list li {
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-meta .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-size: 16px;
    font-weight: 600;
}

.entry-meta time {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.comment-content p {
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* Games Stack - Recommendation */
.sec-title {
    text-align: center;
    font-size: 26px;
    margin: 40px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sec-title .emoji {
    font-size: 32px;
}

.games-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-row {
    display: grid;
    grid-template-columns: 200px 1fr 60px;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, background 0.3s;
}

.game-row:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.08);
}

.gr-thumb {
    position: relative;
}

.gr-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.gr-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.gr-info a {
    display: block;
    padding: 15px 0;
}

.gr-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gr-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.gr-badge {
    padding: 4px 10px;
    background: rgba(0,217,255,0.2);
    color: #00d9ff;
    border-radius: 12px;
    font-size: 12px;
}

.gr-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    line-height: 1.5;
}

.gr-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.gr-players {
    color: rgba(255,255,255,0.5);
}

.gr-players .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 5px;
}

.gr-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.gr-stars .s {
    color: #feca57;
}

.gr-stars .sn {
    margin-left: 5px;
    color: rgba(255,255,255,0.7);
}

.gr-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-play {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    border-radius: 50%;
    border: none;
    color: #1a1a2e;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gr-play:hover {
    transform: scale(1.1);
}

/* Game card thumb for related */
.game-card .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.game-card .thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card .details {
    padding: 15px;
}

.game-card .details h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.game-card .details h5 a {
    color: #fff;
}

.game-card .more-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.grid-container .game-card:nth-child(1) { animation-delay: 0.1s; }
.grid-container .game-card:nth-child(2) { animation-delay: 0.2s; }
.grid-container .game-card:nth-child(3) { animation-delay: 0.3s; }
.grid-container .game-card:nth-child(4) { animation-delay: 0.4s; }
.grid-container .game-card:nth-child(5) { animation-delay: 0.5s; }
.grid-container .game-card:nth-child(6) { animation-delay: 0.6s; }

/* Site Description */
.site-description {
    margin: 40px 0;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0,217,255,0.1), rgba(0,255,136,0.1));
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.site-description h2 {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-description .desc-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.desc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #00d9ff;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
}

.card-badge.new {
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    color: #1a1a2e;
}

.card-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #fff;
}

/* Card Rating */
.card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.card-rating .stars {
    color: #feca57;
    font-size: 12px;
    letter-spacing: 2px;
}

.card-rating .rating-count {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Hero Badge */
.badge.featured-badge {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Description */
.hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Play Button Icon */
.btn-icon {
    display: inline-block;
    margin-right: 8px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

/* Section Title Icon */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    font-size: 28px;
}

/* Site Footer */
.site-footer {
    background: rgba(0,0,0,0.3);
    padding: 40px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00d9ff;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #00d9ff;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 24px;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Page Content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

.page-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #00d9ff;
}

.page-section {
    margin-bottom: 25px;
}

.page-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00ff88;
}

.page-section p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.page-section ul {
    margin-left: 20px;
    color: rgba(255,255,255,0.8);
}

.page-section li {
    margin-bottom: 10px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .app-container {
        grid-template-columns: 1fr;
    }
    
    .left-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        z-index: 1000000000;
        background: #1a1a2e;
        border-right: 1px solid rgba(255,255,255,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding-top: 75px;
    }
    
    .left-sidebar.active {
        left: 0;
    }
    
    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999999999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Header */
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(135deg, #1a1a2e, #16213e);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        z-index: 1000000001;
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #00d9ff, #00ff88);
        color: #1a1a2e;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,217,255,0.3);
    }
    
    .menu-toggle i {
        width: 20px;
        height: 20px;
        filter: invert(1);
    }
    
    .mobile-logo {
        font-size: 18px;
        font-weight: 700;
        background: linear-gradient(135deg, #00d9ff, #00ff88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.1);
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-right: 34px;
        margin-top: -10px;
    }
    
    .mobile-search-btn i {
        width: 18px;
        height: 18px;
    }
    
    /* Mobile Search Panel */
    .mobile-search-panel {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(26,26,46,0.98);
        z-index: 1000000002;
        padding: 20px 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    
    .mobile-search-panel.active {
        display: block;
    }
    
    .mobile-search-form {
        display: flex;
        gap: 10px;
    }
    
    .mobile-search-input {
        flex: 1;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 25px;
        padding: 12px 20px;
        color: #fff;
        font-size: 14px;
        outline: none;
    }
    
    .mobile-search-input::placeholder {
        color: rgba(255,255,255,0.5);
    }
    
    .mobile-search-input:focus {
        border-color: #00d9ff;
        background: rgba(255,255,255,0.15);
    }
    
    .mobile-search-submit {
        background: linear-gradient(135deg, #00d9ff, #00ff88);
        border: none;
        border-radius: 25px;
        padding: 12px 25px;
        color: #1a1a2e;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
    }
    
    .main-content {
        padding: 20px 15px;
        padding-top: 80px;
    }
    
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-card {
        height: 300px;
    }
    
    .hero-overlay h2 {
        font-size: 24px;
    }
    
    .site-description {
        padding: 30px 20px;
    }
    
    .desc-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .main-content {
        padding: 20px 15px;
        padding-top: 80px;
    }
    
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .hero-card {
        height: 250px;
    }
    
    .hero-overlay h2 {
        font-size: 18px;
    }
    
    .hero-overlay .hero-desc {
        display: none;
    }
    
    .play-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
        flex-wrap: wrap;
    }
    
    .title-icon {
        font-size: 22px;
    }
    
    .site-description {
        padding: 25px 15px;
    }
    
    .site-description h2 {
        font-size: 22px;
    }
    
    .desc-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .page-content {
        padding: 25px 15px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-section h3 {
        font-size: 18px;
    }
    
    .game-iframe-container {
        margin: 0 auto 20px;
    }
    
    .game-play-box {
        height: 300px;
    }
    
    .game-play-box .game-img {
        width: 100px;
        height: 100px;
    }
    
    .game-play-box .start-game-btn {
        width: 220px;
        height: 50px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .game-title {
        font-size: 14px;
    }
    
    .billboard-text-panel h3 {
        font-size: 18px;
    }
    
    .billboard-text-panel p {
        font-size: 14px;
    }
    
    .games-stack {
        gap: 10px;
    }
    
    .game-row {
        grid-template-columns: 100px 1fr 40px;
        gap: 10px;
    }
    
    .game-row:hover {
        transform: none;
    }
    
    .gr-thumb img {
        height: 80px;
    }
    
    .gr-rank {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .gr-info a {
        padding: 8px 0;
    }
    
    .gr-title {
        font-size: 14px;
    }
    
    .gr-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    
    .gr-desc {
        display: none;
    }
    
    .gr-play {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .social-share {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .share-item__icon {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .share-item__icon span {
        display: none;
    }
    
    .comments-title {
        font-size: 18px;
    }
    
    .comment-form textarea,
    .comment-form input {
        font-size: 14px;
        padding: 8px;
    }
    
    .submit {
        padding: 10px 20px;
        font-size: 14px;
    }
    
#csScrollRocket {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d9ff, #00ff88);
    color: #1a1a2e;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
    transition: all 0.3s;
}

#csScrollRocket:hover {
    transform: translateY(-3px);
}
    
    .back-icon img {
        height: 35px;
    }
    
    /* Footer section adjustments */
    .footer-section h4 {
        font-size: 16px;
    }
    
    /* Mobile menu search */
    .sidebar-search {
        padding: 0 10px;
    }
    
    .sidebar-search form {
        background: rgba(255,255,255,0.1);
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .footer-section li {
        font-size: 13px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-row {
        grid-template-columns: 1fr;
    }
    
    .gr-thumb {
        display: none;
    }
    
    .gr-action {
        display: none;
    }
    
    .hero-card {
        height: 200px;
    }
    
    .hero-overlay h2 {
        font-size: 16px;
    }
    
    .play-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .game-play-box {
        height: 250px;
    }
    
    .game-play-box .game-img {
        width: 80px;
        height: 80px;
    }
    
    .game-play-box .start-game-btn {
        width: 180px;
        height: 45px;
        font-size: 13px;
    }
}
