/* Game Guide Page Styles - Based on Cosplay and Volunteer Pages */

.game-guide-section{
    background-image: url(../img/sky/habba/hero-bg-Final.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.game-guide_container{
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 150px 0;   
    overflow: hidden;     
}

/* Game Guide Content Styles */
.game-guide_content_1 {
    background-color: #00000080;
    border-radius: 15px;
    padding: 40px 20px;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

/* Logo Section Styles */
.game-guide-logo-section {
    position: relative;
    margin-bottom: 50px;
}

.gt-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.game-guide-gt-logo {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.game-guide-gt-logo:hover {
    transform: scale(1.05);
}

/* Main Content */
.game-guide-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #f8ca14;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-guide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    max-width: 800px;
    margin: 0 auto 40px;
    text-transform: capitalize;
}

.game-guide_content_2, .game-guide_content_3, .game-guide_content_4, .game-guide_content_5, .game-guide_content_6{   
    margin-bottom: 50px;
}

/* Key Information Banner */
.key-info-banner {
    background-color: #00000080;
    border: 1px solid #f8ca14;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.banner-gt-logo {
    max-width: 120px;
    height: auto;
    width: 100%;
}

.banner-sky-logo {
    max-width: 100px;
    height: auto;
    width: 100%;
}

.banner-title h2 {
    color: #f8ca14;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

/* Game Guide Event Sections */
.gg-event-section {
    background-color: #00000080;
    border-left: 5px solid #f8ca14;
    border-radius: 0px 10px 10px 0px;
    padding: 30px;
    margin-bottom: 20px;
}

.gg-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.gg-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.gg-arcade-icon {
    background: #ff6b35;
    color: white;
}

.gg-casual-icon {
    background: #4caf50;
    color: white;
}

.gg-traditional-icon {
    background: #9c27b0;
    color: white;
}

.gg-tournament-icon {
    background: #ffd700;
    color: #8f0304;
}

.gg-rules-icon {
    background: #ff0000;
    color: white;
}

.gg-section-header h3 {
    color: #f8ca14;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.gg-section-content {
    color: white;
}

/* Games Grid */
.gg-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.gg-game-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(248, 202, 20, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gg-game-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(248, 202, 20, 0.2);
}

.gg-game-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    background: linear-gradient(45deg, #f8ca14, #f7931e);
    color: #8f0304;
    box-shadow: 0 5px 15px rgba(248, 202, 20, 0.3);
}

.gg-game-item h5 {
    color: #f8ca14;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.gg-game-item p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Table of Contents Styles */
.gg-contents-icon {
    background: #2196f3;
    color: white;
}

.gg-contents-categories {
    margin-top: 20px;
}

.gg-category-section {
    margin-bottom: 30px;
}

.gg-category-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid #f8ca14;
}

.gg-game-list {
    margin-left: 20px;
}

.gg-game-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gg-game-entry:last-child {
    border-bottom: none;
}

.gg-game-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.gg-page-number {
    color: #f8ca14;
    font-size: 1rem;
    font-weight: 700;
}

/* Info List Styles */
.gg-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.gg-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.gg-star-icon {
    color: #f8ca14;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Game Details Section Styles */
.gg-irl-icon {
    background: #ff6b35;
    color: white;
}

.gg-game-image {
    text-align: center;
    margin: 30px 0;
}

.gg-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 4px solid #f8ca14;
    box-shadow: 0 10px 30px rgba(248, 202, 20, 0.3);
}

.gg-game-info-section {
    margin: 30px 0;
}

.gg-info-title {
    color: #f8ca14;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gg-info-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* DO'S and DON'TS Section Styles - Matching Volunteer Page */
.gg-guidelines-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.gg-dos-column, .gg-donts-column {
    background: #ffffff1a;
    border-radius: 15px;
    padding: 25px;
}

.gg-dos-header h4 {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.gg-donts-header h4 {
    color: #f44336;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.gg-dos-column {
    border: 2px solid #4CAF50;
}

.gg-donts-column {
    border: 2px solid #f44336;
}

.gg-guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gg-guidelines-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: white;
}

.gg-check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gg-x-icon {
    color: #f44336;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Important Banner Section */
.important-banner {
    margin: 80px 0 0 0;
    text-align: center;
}

.important-banner .banner-content {
    background: #f8ca14;
    border-radius: 25px;
    padding: 25px 40px;
    display: inline-block;
    max-width: 99%;
    box-shadow: 0 8px 25px rgba(248, 202, 20, 0.3);
}

.important-banner h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Contact Banner Section */
.contact-banner {
    background: #f8ca14;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 1.8rem;
    color: #8f0304;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.contact-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    text-transform: uppercase;
}

.contact-email {
    font-weight: 800;
    font-size: 1.2rem;
    color: #8f0304;
    text-decoration: underline;
}

.contact-slogan {
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-guide_container{
        padding: 120px 0;        
    }
    
    .game-guide-heading {
        font-size: 2rem;
    }

    .game-guide-description {
        font-size: 1rem;
    }

    .game-guide-gt-logo {
        max-width: 400px;
    }
    
    .gg-section-header h3 {
        font-size: 1.5rem;
    }
    
    .gg-header-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .key-info-banner{
        padding: 20px;
    }
    
    .banner-content {
        gap: 15px;
    }
    
    .banner-title h2 {
        font-size: 1.5rem;
    }
    
    .gg-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gg-game-item {
        padding: 20px;
    }
    
    .gg-game-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .gg-game-item h5 {
        font-size: 1.2rem;
    }
    
    .gg-main-image {
        border-width: 3px;
    }
    
    .gg-info-title {
        font-size: 1.2rem;
    }
    
    .gg-info-text {
        font-size: 1rem;
    }
    
    .important-banner h3 {
        font-size: 1.1rem;
    }
    
    .important-banner .banner-content {
        padding: 20px 30px;
    }
    
    .gg-guidelines-content {
        gap: 20px;
    }
    
    .gg-dos-header h4,
    .gg-donts-header h4 {
        font-size: 1.3rem;
    }
    
    .gg-guidelines-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .game-guide-heading {
        font-size: 1.8rem;
    }

    .game-guide-gt-logo {
        max-width: 300px;
    }
    
    .gg-event-section {
        padding: 20px;
    }
    
    .gg-section-header h3 {
        font-size: 1.3rem;
    }
    
    .gg-header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gg-star-icon {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .key-info-banner{
        padding: 15px;
    }
    
    .banner-content {
        gap: 10px;
    }
    
    .banner-title h2 {
        font-size: 1.2rem;
    }
    
    .gg-game-item {
        padding: 15px;
    }
    
    .gg-game-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gg-game-item h5 {
        font-size: 1.1rem;
    }
    
    .gg-main-image {
        border-width: 2px;
    }
    
    .gg-info-title {
        font-size: 1.1rem;
    }
    
    .gg-info-text {
        font-size: 0.95rem;
    }
    
    .important-banner h3 {
        font-size: 1rem;
    }
    
    .important-banner .banner-content {
        padding: 15px 25px;
        max-width: 95%;
    }
    
    .gg-guidelines-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gg-dos-column, .gg-donts-column {
        padding: 20px;
    }
    
    .gg-dos-header h4,
    .gg-donts-header h4 {
        font-size: 1.2rem;
    }
    
    .gg-guidelines-list li {
        font-size: 0.9rem;
    }
    
    .gg-check-icon,
    .gg-x-icon {
        font-size: 1.1rem;
        margin-right: 12px;
    }
    
    .contact-text {
        flex-direction: column;
        gap: 10px;
    }
}
