/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a1a;
    --secondary-bg: #1a1a2e;
    --accent-blue: #4a7eff;
    --accent-orange: #ff6b35;
    --accent-purple: #9f4aff;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --gradient-text: linear-gradient(90deg, #4a7eff 0%, #9f4aff 50%, #ff6b35 100%);
    --gradient-blue: linear-gradient(90deg, #FFF 0%, #5C62F5 50.96%, #47C1D5 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
     font-family: "Inter", sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-image {
    width: 100%;
}

.hero-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.hero-content {
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.hero-text {
    text-align: left;
    display: flex;
    gap: 30px;
    width: 100%;
}

.h-left {
    max-width: 540px;
    width: 100%;
}

.h-right {
    max-width: 208px;
    width: 100%;
    align-self: center;
}

.hero-title {
    width: 100%;
    text-transform: uppercase;
    max-width: 348px;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(90deg, #FFF 0%, #5C62F5 50.96%, #47C1D5 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.title-small {
    display: block;
    font-size: 48px;
    color: var(--accent-blue);
}

.title-games {
    display: block;
    color: var(--text-white);
}

.title-big {
    display: block;
    color: var(--text-white);
}

.title-fun {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 182px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-blue);
    color: #000;
    max-width: 254px;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 126, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--text-white);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #FFF 0%, #5C62F5 50.96%, #47C1D5 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.star-icon {
    width: 100%;
    height: 100%;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.characters-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    
    position: relative;
}

.adv-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
}

.advantages-grid {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  display: flex;
    width: 100%;
    max-width: 898px;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px 20px;
    transition: all 0.3s ease;
    flex: 0 1 31.5%;
    width: 100%;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.emoji-icon {
    width: 100%;
    height: 100%;
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.advantage-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.advantages-character {
    width: 100%;
    max-width: 356px;
    margin-left: -15%;
}

.character-img {
    width: 100%;
    height: auto;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    text-align: center;
}

.title-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
   text-align: left;
}

.feature-icon {
   max-width: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.feature-icon img {
    width: 100%;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Ready to Play Section */
.ready-to-play {
    padding: 100px 0;
    background-image: url(/wp-content/themes/trickami/../images/m-bcg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ready-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ready-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.ready-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.ready-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.ready-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-white);
}

.chef-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: var(--primary-bg);
    border-top: 1px solid var(--card-border);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-blue);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
.hero {
    padding: 60px 0;
}

.hero-row {
    flex-direction: column;
}

.hero-image {
    width: 170%;
}

.h-left {
    padding-right: 15px;
}

.h-right {
    align-self: flex-end;
}

    .hero-content {
        max-width: 590px;
        padding: 0 15px;
        align-self: center;
    }

    .hero-text {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 64px;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }
    
    .title-small {
        font-size: 36px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content,
    .ready-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .advantages-character {
       
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--primary-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
       
    }
    
    .title-small {
        font-size: 28px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 36px;
    }

    .adv-inner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    
    .advantages-grid {
        flex-direction: column;
        align-items: center;
    }

    .advantages-character {
        margin: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .title-small {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Games Page Specific Styles */

/* Games Main Container */
.games-main {
    padding-top: 100px;
    min-height: 100vh;
    background-color: var(--primary-bg);
    position: relative;
}

/* Games Hero Section */
.games-hero {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.games-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.title-gradient {
    background: linear-gradient(90deg, #6B5EFF 0%, #9B88FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    background: linear-gradient(90deg, #4AC8FF 0%, #3DA9E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Games Grid Section */
.games-grid-section {

    padding-bottom: 100px;
}

.games-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.games-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* Game Item Styles */
.game-item {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #1a1a2e;
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-item:hover::before {
    opacity: 1;
}

.game-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(74, 126, 255, 0.3);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-item:hover .game-img {
    transform: scale(1.1);
}

/* Game Overlay */
.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 20px;
border: 2px solid #FFF;
background: #1A105A;
height: 100%;
}

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

.game-name {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.game-play {
    color: var(--accent-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

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

/* Character Penguin */
.games-character {
    flex-shrink: 0;
    width: 33.8vw;
    position: absolute;
    right: 0;
    bottom: 10%;
    animation: float 6s ease-in-out infinite;
}

.character-penguin {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

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

/* Special Game Styles */
.game-item:nth-child(1),
.game-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
}

.game-item:nth-child(1) .game-name {
    font-size: 18px;
}

/* Glow Effects */
.game-item:nth-child(3) {
    animation: glow-blue 3s ease-in-out infinite alternate;
}

.game-item:nth-child(6) {
    animation: glow-orange 3s ease-in-out infinite alternate;
}

@keyframes glow-blue {
    from {
        box-shadow: 0 0 20px rgba(74, 126, 255, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(74, 126, 255, 0.5);
    }
}

@keyframes glow-orange {
    from {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .games-content {
        flex-direction: column;
        align-items: center;
    }
    
    .games-character {
        width: 250px;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .games-title {
        font-size: 48px;
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .game-item:nth-child(1),
    .game-item:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .game-item:nth-child(1) .game-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .games-main {
        padding-top: 80px;
        padding-bottom: 160px;
    }

    .games-character {
       bottom: 0;
    }
    .games-title {
        font-size: 36px;
    }
    
    .games-description {
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
    }
    
    .games-character {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .games-main {
        padding-top: 80px;
        padding-bottom: 160px;
    }
    
    .games-hero {
        margin-bottom: 40px;
    }
    
    .games-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    
    .game-item {
        border-radius: 16px;
    }
    
    .game-overlay {
        padding: 15px 10px 10px;
    }
    
    .game-name {
        font-size: 12px;
    }
    
    
}

/* Loading Animation */
.game-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.game-item:nth-child(1) { animation-delay: 0.1s; }
.game-item:nth-child(2) { animation-delay: 0.2s; }
.game-item:nth-child(3) { animation-delay: 0.3s; }
.game-item:nth-child(4) { animation-delay: 0.4s; }
.game-item:nth-child(5) { animation-delay: 0.5s; }
.game-item:nth-child(6) { animation-delay: 0.6s; }
.game-item:nth-child(7) { animation-delay: 0.7s; }
.game-item:nth-child(8) { animation-delay: 0.8s; }

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

/* Pulse Animation for Featured Games */
.game-item:nth-child(1)::after,
.game-item:nth-child(8)::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Game Page Specific Styles */

/* Game Hero Section */
.game-hero {
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 50%, rgba(74, 126, 255, 0.1) 0%, transparent 50%);
}

.game-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.game-info {
    max-width: 600px;
}

.game-title {
    font-size: 96px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #FFF 0%, #5C62F5 50.96%, #47C1D5 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.title-primary {
    display: block;
    color: var(--text-white);
}

.title-secondary {
    display: block;
    background: linear-gradient(90deg, #4A7EFF 0%, #7B66FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-tertiary {
    display: block;
    color: var(--text-white);
}

.game-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-white);
    line-height: 1.3;
}

.game-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Play Buttons */
.btn-play-primary,
.btn-play-secondary {
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play-primary {
    background: linear-gradient(135deg, #B794F6 0%, #9F7AEA 100%);
    color: var(--text-white);
    display: flex;
    max-width: 260px;
    justify-content: center;
    text-decoration: none;
}

.btn-play-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(159, 122, 234, 0.4);
}

.btn-play-secondary {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: var(--text-white);
    margin: 60px auto 0;
    display: block;
    max-width: 260px;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btn-play-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Game Preview */
.game-preview {
    position: relative;
}

.game-preview-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 900;
    animation: rotate 20s linear infinite;
}

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

/* Game Features Section */
.game-features {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(90deg, #4A7EFF 0%, #9B88FF 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 800px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 126, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.icon-img {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 20px;
}

/* Features Showcase */
.features-showcase {
    text-align: center;
    margin: 60px 0;
}

.showcase-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Game-specific color schemes */
/* Scary Teacher */
.game-scary-teacher .title-secondary {
    background: linear-gradient(90deg, #E53E3E 0%, #9F1239 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-scary-teacher .btn-play-primary {
    background: linear-gradient(135deg, #B794F6 0%, #9F7AEA 100%);
}

/* Idle Mining Empire */
.game-mining .title-primary {
    color: var(--text-white);
}

.game-mining .title-secondary {
    background: linear-gradient(90deg, #F6AD55 0%, #ED8936 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-mining .title-tertiary {
    background: linear-gradient(90deg, #4299E1 0%, #3182CE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-mining .btn-play-primary {
    background: linear-gradient(135deg, #63B3ED 0%, #4299E1 100%);
}

/* Star Blogger */
.game-blogger .title-secondary {
    background: linear-gradient(90deg, #805AD5 0%, #6B46C1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-blogger .title-tertiary {
    background: linear-gradient(90deg, #38B2AC 0%, #319795 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-blogger .btn-play-primary {
    background: linear-gradient(135deg, #9F7AEA 0%, #805AD5 100%);
    text-decoration: none;
    text-align: center;
}

/* Monkey Mart */
.game-monkey .title-primary {
    background: linear-gradient(90deg, #48BB78 0%, #38A169 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-monkey .btn-play-primary {
    border-radius: 60px;
background:  linear-gradient(90deg, #FFF 0%, #5C62F5 50.96%, #47C1D5 100%);
text-decoration: none;
text-align: center;
color: #000;
}

.game-monkey .title-secondary {
    color: var(--text-white);
}

.game-monkey .feature-card:hover {
    border-color: rgba(72, 187, 120, 0.3);
}

/* Game Stages (for games like Star Blogger) */
.game-stages {
    margin-top: 60px;
}

.stage-section {
    margin-bottom: 40px;
}

.stage-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.stage-list {
    list-style: none;
}

.stage-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.stage-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-size: 20px;
}

.blog-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;

}

/* Character Showcase (for Star Blogger) */
.character-showcase {
    position: relative;
    max-width: 360px;
    width: 100%;
   
}

.character-showcase img {
    width: 100%;
    height: auto;
}

/* Mining Info Section (for Idle Mining Empire) */
.mining-info-section {
    margin-top: 60px;
}

.mining-info-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.mining-preview {
    position: relative;
}

.mining-character-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.mining-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mining-feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mining-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(237, 137, 54, 0.3);
}

.mining-feature .feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .game-hero-content {
        gap: 60px;
    }
    
    .game-title {
        font-size: 72px;
    }
    
    .mining-info-content {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .game-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .game-info {
        max-width: 100%;
    }
    
    .game-title {
        font-size: 60px;
    }
    
    .game-subtitle {
        font-size: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .mining-info-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mining-features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .blog-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .game-hero {
        padding: 100px 0 60px;
    }
    
    .game-title {
        font-size: 48px;
    }
    
    .game-subtitle {
        font-size: 18px;
    }
    
    .game-description {
        font-size: 14px;
    }
    
    .btn-play-primary,
    .btn-play-secondary {
        padding: 15px 40px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mining-feature {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .game-hero {
        min-height: auto;
    }
    
    .game-title {
        font-size: 36px;
    }
    
    .game-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .game-decoration {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .mining-feature {
        padding: 20px;
    }
    
    .mining-feature .feature-title {
        font-size: 18px;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                