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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #0C0E0D;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cookie-content p {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-accept, .btn-refuse {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #00D563, #00B553);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #00B553, #009544);
    transform: translateY(-2px);
}

.btn-refuse {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-refuse:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Header */
.header {
    background: #1a1a1a;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 15px 0;
}

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

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

.logo {
    width: 30px;
    height: 30px;
    
}

.brand-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00D563;
}

.btn-games {
    background: linear-gradient(135deg, #00D563, #00B553);
    padding: 10px 20px;
    border-radius: 25px;
    color: white !important;
}

.btn-games:hover {
    background: linear-gradient(135deg, #00B553, #009544);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    
    padding: 20px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
   
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-x {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.3;
}



.decoration-x::before {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
}

.decoration-x::after {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 6px;
    transform: translateY(-50%) rotate(-45deg);
}

.decoration-x.top-right {
    top: 40px;
    right: 40px;
}

.decoration-x.bottom-left {
    bottom: 40px;
    left: 40px;
}

.decoration-x.bottom-right {
    bottom: 40px;
    right: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
background: linear-gradient(135deg, #00D563, #00B553);
padding: 140px 40px 140px;
border-radius: 40px;
overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #00D563;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #00D563;
}

/* About Section */
.about {
  
    padding: 100px 0;
    color: white;
}

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

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
}

.about p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #00D563;
}

.about ul {
    list-style: none;
    padding-left: 0;
}

.about li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.about li::before {
    content: '•';
    color: #00D563;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-image {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.character-img {
    width: 100%;
    max-width: 450px;
    height: auto;
   display: block;
}

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

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-choose > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.9;
    line-height: 1.7;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 10px;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00D563;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Daily Bonuses Section */
.daily-bonuses {
    
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.daily-bonuses h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.daily-bonuses > .bonuses-content > .bonuses-text > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.bonus-features {
    margin-bottom: 40px;
}

.bonus-item {
    margin-bottom: 30px;
}

.bonus-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00D563;
}

.bonus-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.bonus-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonuses-visual {
    text-align: center;
    position: relative;
}

.bonus-graphic {
   display: flex;
   flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bonus-graphic::before {
  
}

.bonus-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    position: relative;
    z-index: 2;
}

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

/* Footer */
.footer {
    
    padding: 30px 0 30px;
    color: white;
  
   
}

.footer-inner {
    background: linear-gradient(135deg, #00D563, #00B553);
    padding: 40px;
    border-radius: 40px;
    width: 100%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-content {
    flex: 1;
    text-align: left;
}

.footer h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-content > p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
}

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-shrink: 0;
}

.social-link {
    width: 40px;
    height: 40px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-link img {
    width: 100%;
 
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .hero {
       
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .decoration-x {
        width: 40px;
        height: 40px;
    }
    
    .decoration-x.top-right,
    .decoration-x.bottom-left,
    .decoration-x.bottom-right {
        top: 20px;
        right: 20px;
        bottom: 20px;
        left: 20px;
    }
    
    .decoration-x.bottom-left {
        top: auto;
        right: auto;
    }
    
    .decoration-x.bottom-right {
        top: auto;
        left: auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .bonuses-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accept, .btn-refuse {
        width: 100%;
        max-width: 300px;
    }
    
    .footer {
        border-radius: 20px 20px 0 0;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .contact-info {
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
    }
    
    .bonus-buttons {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
      padding: 80px 20px;
       
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .about, .why-choose, .daily-bonuses {
        padding: 60px 0;
    }
    
    .about h2, .why-choose h2, .daily-bonuses h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content h3 {
        font-size: 1.5rem;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .footer-inner {
       padding: 40px 20px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
       
    }
    
    .social-link img {
       
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-info {
        gap: 30px;
    }
    
    .footer-main {
        gap: 30px;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00D563, #00B553);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00B553, #009544);
}



/* Games Page Specific Styles */

/* Games Hero Section */
.games-hero {
    background: #1a1a1a;
    padding: 120px 0 80px;
    color: white;
}

.games-hero-content {
    max-width: 800px;
}

.games-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.games-hero p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.games-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Explore Section */
.explore-section {
    background: #1a1a1a;
    padding: 100px 0;
    color: white;
    position: relative;
}

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

.explore-text {
    max-width: 600px;
}

.explore-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.explore-section > .container > .explore-content > .explore-text > p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.game-categories {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #00D563;
}

.category-item p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.explore-decoration {
    position: relative;
}

.decoration-x-large {
    width: 120px;
    height: 120px;
    position: relative;
    opacity: 0.3;
}

.decoration-x-large::before,
.decoration-x-large::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 4px;
}

.decoration-x-large::before {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
}

.decoration-x-large::after {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 8px;
    transform: translateY(-50%) rotate(-45deg);
}

/* Games Collection */
.games-collection {
    background: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 20px;
    max-width: 1100px;
 
}

.div1 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 3;
}

.div4 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 7;
    grid-row-start: 1;
}

.div5 {
    grid-column-start: 10;
    grid-row-start: 1;
}

.div6 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-row-start: 5;
}

.div7 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 4;
    grid-row-start: 5;
}

.div8 {
    grid-column-start: 6;
    grid-row-start: 5;
}

.div9 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
    grid-column-start: 7;
    grid-row-start: 5;
}

.game-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 
    aspect-ratio: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 213, 99, 0.2);
}

.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.large-card-bottom {
    grid-column: span 2;
    grid-row: span 1;
}

.cross {
    width: 64px !important;
    height: 64px !important;
}

.game-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

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

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.game-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.games-decoration-right {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    z-index: 1;
}

/* Active nav link */
.nav-link.active {
    color: #00D563 !important;
}

.page-features {
    padding: 40px 0;
}

.page-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.page-image {
    max-width: 395px;
    width: 100%;
}

.page-image img {
    width: 100%;
}

.features-inner {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.page-item {
    width: 100%;
    flex: 0 1 46%;
     display: flex;
     flex-direction: column;
     gap: 20px;
}

.page-text {
    padding: 40px 0 20px;
    max-width: 510px;
    width: 100%;
    display: flex;
     flex-direction: column;
     gap: 20px;
     margin: 0 auto;
}

/* Responsive Design for Games Page */
@media (max-width: 1200px) {
    .games-decoration-right {
        right: 20px;
    }
    
    .decoration-x-large {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .games-grid {
       
    }
    
    .large-card {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .large-card-bottom {
        grid-column: span 3;
        grid-row: span 1;
    }
    
    .explore-content {
        grid-template-columns: 1fr;
        gap: 40px;
        
    }
    
    .games-decoration-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .games-hero {
        padding: 100px 0 60px;
    }

    .page-inner {
        flex-direction: column;
        align-items: center;
    }

    .features-inner {
        flex-wrap: wrap;
    }
    
    .games-hero h1 {
        font-size: 2.2rem;
    }
    
    .games-hero p {
        font-size: 0.95rem;
    }
    
    .games-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .explore-section {
        padding: 60px 0;
    }
    
    .explore-section h2 {
        font-size: 2rem;
    }
    
    .games-collection {
        padding: 60px 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(11, 1fr);
        gap: 15px;
     
    }

    .div1 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 5;
    grid-row-start: 3;
}

.div4 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-row-start: 5;
}

.div5 {
    grid-column-start: 4;
    grid-row-start: 5;
}

.div6 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
    grid-row-start: 5;
}

.div7 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-row-start: 8;
}

.div8 {
    grid-column-start: 3;
    grid-row-start: 8;
}

.div9 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
    grid-column-start: 4;
    grid-row-start: 8;
}
    
    .large-card {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .large-card-bottom {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .decoration-x-large {
        width: 80px;
        height: 80px;
    }
    
    .game-overlay {
        padding: 15px;
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
    
    .game-overlay h3 {
        font-size: 1rem;
    }
    
    .game-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .games-hero h1 {
        font-size: 1.8rem;
    }
    
    .games-hero p {
        font-size: 0.9rem;
    }

    .features-inner {
        flex-direction: column;
    }
    
    .explore-section h2 {
        font-size: 1.8rem;
    }
    
    .games-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
    }

    .div1 {
    grid-column: span 4 / span 4;
    grid-row: span 3 / span 3;
}

.div2 {
    flex: 0 1 47%;
}

.div3 {
    flex: 0 1 47%;
}

.div4 {
    flex: 0 1 62%;
}

.div5 {
    grid-column-start: 4;
    grid-row-start: 5;
}

.div6 {
    
}

.div7 {
    flex: 0 1 61%;
}

.div8 {
    grid-row-start: 9;
}

.div9 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 2;
    grid-row-start: 10;
}
    
    .large-card,
    .large-card-bottom {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .category-item {
        text-align: center;
    }
    
    .game-categories {
        gap: 20px;
    }
    
    .decoration-x-large {
        width: 60px;
        height: 60px;
    }
}

/* Loading Animation for Game Cards */
.game-card.loading {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hover effects for better UX */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Accessibility improvements */
.game-card:focus {
    outline: 2px solid #00D563;
    outline-offset: 4px;
}

.game-card:focus .game-overlay {
    transform: translateY(0);
}

/* Print styles */
@media print {
    .games-hero,
    .explore-section,
    .games-collection {
        background: white !important;
        color: black !important;
    }
    
    .game-card {
        break-inside: avoid;
    }
}



              .page {
                padding: 140px 0 80px;
              }
              
              .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;
              }

              
                

                