/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://images.unsplash.com/photo-1493711662062-fa541adb3fc8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f1f1f1;
}

/* Games Section */
.games {
    padding: 100px 0;
    text-align: center;
}

.games h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.game-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-link:visited,
.game-link:active,
.game-link:focus {
    color: inherit;
    outline: none;
}

.game-img {
    height: 200px;
    width: 100%;
}

.game-card h3 {
    margin: 20px 0 10px;
}

.game-card p {
    color: #666;
    padding-bottom: 10px;
}

/* Explore Sections */
.explore-section {
    width: 100%;
    overflow: visible;
    background-repeat: repeat;
    padding: 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 20px;
}

.games-cta {
    background-color: #eeeeee;
    background-image: url('../img/pattern1.png');
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.careers-cta {
    background-color: #f8f9fa;
    background-image: url('../img/pattern2.png');
    border-bottom: 1px solid #ddd;
}

.cta-content {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cta-image img {
    max-width: 110%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.left-img {
    margin-right: 50px;
}

.right-img {
    margin-left: 50px;
}

.right-text {
    padding-left: 20px;
}

.left-text {
    padding-right: 20px;
}

.right-img img {
    transform: translateX(40px) scale(1.1);
}

.left-img img {
    transform: translateX(-40px) scale(1.1);
}

/* Certification Section */
.certification-section {
    padding: 60px 0;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.certification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cert-badge img {
    height: 120px;
    width: auto;
}

.cert-text {
    text-align: left;
}

.cert-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cert-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.cert-year {
    font-weight: bold;
    color: #ff3e3e;
    font-size: 18px;
}

/* Short About Us Section */
.short-about {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
    border-top: 1px solid #eee;
}

.about-brief {
    max-width: 800px;
    margin: 0 auto;
}

.about-brief h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-brief p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .cta-container {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
    }

    .cta-content {
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
    }

    .games-cta .cta-container {
        flex-direction: column-reverse;
    }

    .cta-image {
        margin: 0;
    }

    .cta-image img {
        transform: none;
        max-width: 100%;
    }

    .certification-content {
        flex-direction: column;
        text-align: center;
    }

    .cert-text {
        text-align: center;
    }
}
