/* Scrollbar settings */
::-webkit-scrollbar {
    display: none;
}

html, body {
    -ms-overflow-style: none;  
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #161616; 
    color: #ffffff;

    overflow-x: clip;
    width: 100%;
}

.hero {
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 82px);
    min-height: calc(100dvh - 82px);
    box-sizing: border-box;
    text-align: center;
    padding: 2rem 2rem 4rem 2rem;
}

/* Custom static wave divider */
.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    display: inline-block;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.hero .highlight {
    color: #e44343;
}

.hero-icon {
    position: absolute;
    width: 100px; 
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.icon-top-left {
    top: -50px;
    left: 110px;
    transform: rotate(-35deg);
}

.icon-bottom-right {
    bottom: -70px;
    right: -130px;
    transform: rotate(35deg);
}

@media (max-width: 768px) {
    .hero-icon {
        width: 70px;
    }

    .hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    }

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
    min-height: calc(100vh - 82px);
    min-height: calc(100dvh - 82px);
        text-align: center;
        padding: 2rem;
    }
    
    .icon-top-left { top: -40px; left: -20px; transform: rotate(-35deg); }
    .icon-bottom-right { bottom: -40px; right: -25px; }
}

   /* Our Games Section */
.our-games {
    background-color: #1c1c1c;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.games-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-games h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 0.5rem 0;
}

.our-games .subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.release-tag {
    display: inline-block;
    color: #e44343;
    background-color: #00000000; 
    border: 1px solid #e44343;                
    border-radius: 5px;                        
    padding: 0.4rem 0.9rem;                  
    font-size: 1rem;                       
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Container */
.game-card {
    background-color: #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 720px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

/* 16:9 Aspect Ratio Container for 1920x1080 Image */
.game-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #2a2a2a;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Content Details */
.game-info {
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
}

.roblox-btn {
    display: inline-block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #e44343;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.roblox-btn:hover {
    transform: scale(1.01);
}

.roblox-btn:active {
    transform: scale(0.95);
}

/* View All Games Button Styles */
.view-all-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background-color: #262525;
    border: 2px solid #1b1b1b;
    color: #c0c0c0;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.view-all-btn .arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

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

.view-all-btn:active {
    transform: scale(.95);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .our-games h2 {
        font-size: 2.2rem;
    }

    .our-games .subtitle {
        font-size: 1rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .roblox-btn {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #1c1c1c 0%, #111111 100%);
    border-top: 0px solid #2a2a2a; 
    padding: 5rem 2rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 0.5rem 0;
}

.contact-section .subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 0 2rem 0;
    font-weight: 700;
}

.contact-action-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: #e44343;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-action-btn:hover {
    transform: scale(1.03);
}

.contact-action-btn:active {
    transform: scale(0.95);
}

/* Responsive Adjustments for Contact Section */
@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-section .subtitle {
        font-size: 1rem;
    }

    .contact-action-btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}