:root {
    --gcc-primary: #2a5c45;
    --gcc-secondary: #c19a6b;
    --gcc-accent: #bb3636;
    --gcc-light: #f5f5f5;
    --gcc-dark: #222;
    --gcc-text: #333;
    --gcc-text-light: #777;
}

*, *::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gcc-text);
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.gcc-header-main {
    background-color: var(--gcc-primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gcc-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gcc-header-nav {
    display: flex;
    gap: 2rem;
}

.gcc-nav-link {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.gcc-nav-link:hover {
    color: var(--gcc-secondary);
}

.gcc-nav-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gcc-secondary);
}

.gcc-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gcc-action-search {
    font-size: 1.2rem;
    color: white;
}

.gcc-action-login, .gcc-action-register {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.gcc-action-login {
    color: white;
    border: 1px solid white;
}

.gcc-action-register {
    background-color: var(--gcc-secondary);
    color: var(--gcc-dark);
}

.gcc-register-trigger {
    cursor: pointer;
    transition: transform 0.2s;
}

.gcc-register-trigger:hover {
    transform: scale(1.03);
}

.gcc-mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.gcc-burger-line {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.gcc-burger-line:nth-child(1) {
    top: 0;
}

.gcc-burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.gcc-burger-line:nth-child(3) {
    bottom: 0;
}

.gcc-mobile-menu.active .gcc-burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.gcc-mobile-menu.active .gcc-burger-line:nth-child(2) {
    opacity: 0;
}

.gcc-mobile-menu.active .gcc-burger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.gcc-mobile-nav {
    position: fixed;
    top: 160px;
    left: 0;
    right: 0;
    background: var(--gcc-primary);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.gcc-mobile-nav.active {
    display: block;
}

.gcc-mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gcc-mobile-nav .gcc-nav-link {
    color: white;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gcc-mobile-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .gcc-mobile-menu {
        display: block;
    }
    
    .gcc-header-nav, .gcc-header-actions {
        display: none;
    }
    
    .gcc-search-dropdown {
        width: 250px;
        right: -50px;
    }
}

.gcc-hero-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../gcc-image/gcc-background-image-1.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 1.5rem;
    text-align: center;
}

.gcc-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.gcc-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gcc-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.gcc-hero-offer {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.gcc-hero-highlight {
    color: var(--gcc-secondary);
    font-weight: bold;
}

.gcc-hero-button {
    background-color: var(--gcc-accent);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-bottom: 2rem;
}

.gcc-hero-button:hover {
    background-color: #9e2b2b;
}

.gcc-hero-legal {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
}

.gcc-legal-link {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s;
}

.gcc-legal-link:hover {
    color: var(--gcc-secondary);
}

.gcc-partner-links {
    display: inline-flex;
    gap: 0.3rem;
    align-items: center;
}

.gcc-partner-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.75rem;
}

.gcc-partner-link:hover {
    color: var(--gcc-secondary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gcc-hero-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
    
    .gcc-partner-links {
        margin-top: 0.3rem;
    }
}

.gcc-section-header {
    text-align: center;
    padding: 3rem 1.5rem 1.5rem;
}

.gcc-section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gcc-section-subtitle {
    color: var(--gcc-text-light);
    font-size: 1.1rem;
}

.gcc-games-section {
    padding: 2rem 0;
    background-color: white;
    position: relative;
}

.gcc-section-header {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gcc-section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gcc-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.gcc-carousel-prev,
.gcc-carousel-next {
    pointer-events: all;
    background-color: var(--gcc-primary);
    color: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 10;
}

.gcc-carousel-prev:hover,
.gcc-carousel-next:hover {
    background-color: rgba(255,255,255,0.8);
    color: var(--gcc-primary);
    box-shadow: 0 7px 8px rgba(0,0,0,0.99);
}

.gcc-games-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 1.2rem);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 1.5rem;
}

.gcc-games-carousel::-webkit-scrollbar {
    display: none;
}

.gccpage-games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gcc-badges-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    height: 22px;
    z-index: 2;
}

.gcc-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
}

.gcc-badge.new {
    background-color: #4CAF50;
}

.gcc-badge.popular {
    background-color: #F44336;
}

.gcc-game-card-inner {
    position: relative;
    height: 100%;
}

.gcc-game-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gcc-game-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.gcc-game-card:hover {
    transform: translateY(-5px);
}

.gcc-game-card-inner {
    position: relative;
    height: 100%;
}

.gcc-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gcc-game-info {
    padding: 10px;
    background: #fff;
}

.gcc-game-title {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.gcc-game-category {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.gcc-game-category i {
    margin-right: 5px;
    font-size: 14px;
}

.gccpage-load-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #C19A6B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.gcc-game-card.carousel-item {
    scroll-snap-align: start;
}

.gcc-view-all {
    text-align: center;
    margin: 1.5rem 0 3rem;
}

.gcc-view-all-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--gcc-primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.gcc-view-all-link:hover {
    background-color: #1e4a34;
}

.gcc-games-count {
    font-weight: 700;
    color: var(--gcc-secondary);
}

.gcc-game-image[src*="default-game.jpg"] {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .gcc-games-carousel {
        grid-auto-columns: calc(25% - 1.2rem);
    }
}

@media (max-width: 768px) {
    .gcc-games-carousel {
        grid-auto-columns: calc(33.33% - 1.2rem);
    }
}

@media (max-width: 480px) {
    .gcc-games-carousel {
        grid-auto-columns: calc(100% - -3rem);
    }
    
    .gcc-section-title {
        font-size: 1.5rem;
    }
    
    .gcc-carousel-controls {
        padding: 0 0.5rem;
    }
    
    .gcc-carousel-prev,
    .gcc-carousel-next {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        position: relative;
        top: 40px;
    }
}

.gcc-promo-section {
    background-color: var(--gcc-light);
    padding-bottom: 3rem;
}

.gcc-promo-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gcc-promo-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s;
}

.gcc-promo-card:hover {
    transform: translateY(-5px);
}

.gcc-promo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--gcc-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.gcc-promo-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--gcc-primary), #3a7d5d);
    color: white;
}

.gcc-promo-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gcc-promo-text {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gcc-promo-button {
    background-color: var(--gcc-secondary);
    color: var(--gcc-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.gcc-promo-button:hover {
    background-color: #d4b17a;
}

.gcc-register-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.gcc-register-modal.active {
    opacity: 1;
    pointer-events: all;
}

.gcc-register-container {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gcc-register-modal.active .gcc-register-container {
    transform: translateY(0);
}

.gcc-register-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--gcc-text-light);
}

.gcc-register-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gcc-register-subtitle {
    color: var(--gcc-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gcc-register-messages {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

.gcc-register-messages.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

.gcc-register-messages.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.gcc-register-field {
    margin-bottom: 1rem;
    position: relative;
}

.gcc-register-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.gcc-register-field input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.gcc-register-field input:focus {
    outline: none;
    border-color: var(--gcc-primary);
}

.gcc-register-field i {
    width: 8px;
    position: absolute;
    left: 1rem;
    top: 2.6rem;
    color: var(--gcc-text-light);
}

.gcc-field-error {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.gcc-register-checkbox {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
}

.gcc-register-checkbox input {
    margin-right: 0.5rem;
}

.gcc-register-checkbox label {
    font-size: 0.8rem;
    color: var(--gcc-text-light);
}

.gcc-register-checkbox a {
    color: var(--gcc-primary);
    text-decoration: underline;
}

.gcc-register-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--gcc-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.gcc-register-submit:hover {
    background-color: #1e4a34;
}

.gcc-register-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.gcc-register-login {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gcc-text-light);
}

.gcc-register-login a {
    color: var(--gcc-primary);
    font-weight: 500;
}

.gcc-register-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.gcc-register-success.active {
    opacity: 1;
    pointer-events: all;
}

.gcc-success-container {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
}

.gcc-success-container i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.gcc-success-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gcc-success-text {
    margin-bottom: 0.5rem;
}

.gcc-success-email {
    font-weight: 500;
    color: var(--gcc-primary);
}

.gcc-success-note {
    font-size: 0.9rem;
    color: var(--gcc-text-light);
    margin-bottom: 1.5rem;
}

.gcc-success-close {
    padding: 0.8rem 1.5rem;
    background-color: var(--gcc-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.gcc-success-close:hover {
    background-color: #1e4a34;
}

.gcc-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.gcc-login-modal.active {
    opacity: 1;
    pointer-events: all;
}

.gcc-login-container {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gcc-login-modal.active .gcc-login-container {
    transform: translateY(0);
}

.gcc-login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--gcc-text-light);
}

.gcc-login-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gcc-login-subtitle {
    color: var(--gcc-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gcc-login-messages {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

.gcc-login-messages.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

.gcc-login-messages.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.gcc-login-field {
    margin-bottom: 1rem;
    position: relative;
}

.gcc-login-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.gcc-login-field input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.gcc-login-field input:focus {
    outline: none;
    border-color: var(--gcc-primary);
}

.gcc-login-field i {
    position: absolute;
    width: 8px;
    left: 1rem;
    top: 2.3rem;
    color: var(--gcc-text-light);
}

.gcc-login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.gcc-forgot-password {
    color: var(--gcc-primary);
    font-size: 0.9rem;
    text-decoration: underline;
}

.gcc-login-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--gcc-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.gcc-login-submit:hover {
    background-color: #1e4a34;
}

.gcc-login-register {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gcc-text-light);
}

.gcc-login-register a {
    color: var(--gcc-primary);
    font-weight: 500;
}

.gcc-forgot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.gcc-forgot-modal.active {
    opacity: 1;
    pointer-events: all;
}

.gcc-forgot-container {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gcc-forgot-modal.active .gcc-forgot-container {
    transform: translateY(0);
}

.gcc-forgot-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--gcc-text-light);
}

.gcc-forgot-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gcc-forgot-subtitle {
    color: var(--gcc-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gcc-forgot-messages {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

.gcc-forgot-messages.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

.gcc-forgot-messages.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.gcc-forgot-field {
    margin-bottom: 1.5rem;
    position: relative;
}

.gcc-forgot-field label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.gcc-forgot-field input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.gcc-forgot-field input:focus {
    outline: none;
    border-color: var(--gcc-primary);
}

.gcc-forgot-field i {
    position: absolute;
    left: 1rem;
    top: 2.3rem;
    color: var(--gcc-text-light);
}

.gcc-forgot-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--gcc-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.gcc-forgot-submit:hover {
    background-color: #1e4a34;
}

.gcc-forgot-login {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gcc-text-light);
}

.gcc-forgot-login a {
    color: var(--gcc-primary);
    font-weight: 500;
}

.gcc-password-toggle {
    position: absolute;
    right: 1rem;
    top: 2.3rem;
    color: var(--gcc-text-light);
    cursor: pointer;
}

.gcc-password-toggle:hover {
    color: var(--gcc-primary);
}

@media (max-width: 768px) {
    .gcc-header-nav, .gcc-header-actions {
        display: none;
    }
    
    .gcc-mobile-menu {
        display: block;
    }
    
    .gcc-hero-title {
        font-size: 2.2rem;
    }
    
    .gcc-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .gcc-promo-featured {
        grid-column: span 1;
    }
    
    .gcc-promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gcc-hero-title {
        font-size: 1.8rem;
    }
    
    .gcc-section-title {
        font-size: 2rem;
    }
    
    .gcc-register-container {
        padding: 1.5rem;
    }
}

.gcc-nz-promo-sections {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.gcc-nz-promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
}

.gcc-nz-promo-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.gcc-nz-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 56, 48, 0.8), rgba(31, 31, 30, 0.7));
    z-index: 1;
}

.gcc-nz-promo-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.gcc-nz-promo-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.gcc-nz-promo-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.gcc-nz-promo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--gcc-secondary);
    color: var(--gcc-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.gcc-nz-promo-button:hover {
    background-color: white;
    transform: translateX(5px);
}

.gcc-nz-live-casino {
    background-image: url('../gcc-image/gcc-background-image-2.jpg');
}

.gcc-nz-responsible {
    background-image: url('../gcc-image/gcc-background-image-3.jpg');
}

.gcc-nz-vip {
    background-image: url('../gcc-image/gcc-background-image-4.jpg');
}

.gcc-nz-legal {
    position: relative;
    text-align: center;
    padding: 1rem;
    font-size: 0.7rem;
    color: var(--gcc-text-light);
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-top: 1px solid #eee;
}

.gcc-nz-legal a {
    color: var(--gcc-primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gcc-nz-promo-sections {
        padding: 0 0.5rem;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }

    .gcc-nz-promo-title {
        font-size: 1.5rem;
    }
    
    .gcc-nz-promo-text {
        font-size: 1rem;
    }

    
}

.gcc-nz-features {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

.gcc-nz-section-title {
    text-align: center;
    color: var(--gcc-primary);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.gcc-nz-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gcc-secondary);
    margin: 1rem auto 0;
}

.gcc-nz-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gcc-nz-feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--gcc-primary);
}

.gcc-nz-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gcc-nz-icon {
    font-size: 2.5rem;
    color: var(--gcc-primary);
    margin-bottom: 1.5rem;
}

.gcc-nz-feature-card h3 {
    color: var(--gcc-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.gcc-nz-feature-card p {
    color: var(--gcc-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gcc-nz-feature-card a {
    color: var(--gcc-primary);
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s;
}

.gcc-nz-feature-card a:hover {
    color: var(--gcc-accent);
}

@media (max-width: 768px) {
    .gcc-nz-features {
        padding: 0 0.5rem;
    }

    .gcc-nz-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
    
    .gcc-nz-section-title {
        font-size: 1.8rem;
    }

    .gcc-nz-feature-card p {
        font-size: .9rem;
    }
}

.gcc-nz-footer {
    background-color: var(--gcc-dark);
    color: white;
    padding: 3rem 1.5rem 1rem;
    font-size: 0.9rem;
}

.gcc-nz-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gcc-nz-footer-block {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.gcc-nz-wide-block {
    grid-column: span 2;
}

.gcc-nz-footer-title {
    color: var(--gcc-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.5rem;
}

.gcc-nz-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gcc-primary);
}

.gcc-nz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcc-nz-footer-links li {
    margin-bottom: 0.7rem;
}

.gcc-nz-footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    padding: 0.2rem 0;
}

.gcc-nz-footer-links a:hover {
    color: var(--gcc-secondary);
    text-decoration: underline;
}

.gcc-nz-payment-methods {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
    background: #09679e;
    border-radius: 11px;
    padding: 12px 24px;
}

.gcc-nz-payment-methods img {
    width: 100%;
    max-width: 100%;
    height: auto;
    filter: grayscale(80%) brightness(150%);
    transition: filter 0.3s;
}

.gcc-nz-payment-methods img:hover {
    filter: grayscale(0%) brightness(100%);
}

.gcc-nz-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .gcc-nz-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gcc-nz-wide-block {
        grid-column: span 1;
    }
    
    .gcc-nz-payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gcc-nz-payment-methods {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }

    .gcc-nz-payment-methods img {
        width: 80%;
        max-width: 80%;
        height: 80%;
    }
}

.gcc-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 92, 69, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gcc-cookie-consent.active {
    transform: translateY(0);
}

.gcc-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gcc-cookie-icon {
    font-size: 2rem;
    color: var(--gcc-secondary);
}

.gcc-cookie-text {
    flex: 1;
}

.gcc-cookie-text a {
    color: var(--gcc-secondary);
    text-decoration: underline;
}

.gcc-cookie-accept {
    background: var(--gcc-secondary);
    color: var(--gcc-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.gcc-cookie-accept:hover {
    background: #d4b17a;
}

.gcc-age-verification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.gcc-age-verification.active {
    visibility: visible;
    opacity: 1;
}

.gcc-age-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.99);
}

.gcc-age-container {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1;
}

.gcc-age-icon {
    font-size: 3rem;
    color: var(--gcc-primary);
    margin-bottom: 1rem;
}

.gcc-age-container h2 {
    color: var(--gcc-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.gcc-age-container p {
    color: var(--gcc-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gcc-age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gcc-age-confirm, .gcc-age-decline {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.gcc-age-confirm {
    background: var(--gcc-primary);
    color: white;
}

.gcc-age-confirm:hover {
    background: #1e4a34;
}

.gcc-age-decline {
    background: var(--gcc-accent);
    color: white;
}

.gcc-age-decline:hover {
    background: #9e2b2b;
}

.gcc-back-to-top {
    position: fixed;
    bottom: 137px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gcc-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 997;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gcc-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.gcc-back-to-top:hover {
    background: var(--gcc-secondary);
    color: var(--gcc-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .gcc-cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gcc-age-buttons {
        flex-direction: column;
    }
    
    .gcc-back-to-top {
        width: 40px;
        height: 40px;
        bottom: 333px;
        right: 20px;
    }
}

.gcc-main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.gcc-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gcc-section-header h2 {
    color: var(--gcc-primary);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.gcc-section-header p {
    color: var(--gcc-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.gcc-contact-section {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.gcc-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.gcc-form-group {
    margin-bottom: 1.5rem;
}

.gcc-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gcc-text);
}

.gcc-form-group input,
.gcc-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.3s;
}

.gcc-form-group input:focus,
.gcc-form-group textarea:focus {
    outline: none;
    border-color: var(--gcc-primary);
}

.gcc-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.gcc-validation-message {
    font-size: 0.85rem;
    margin-top: 0.3rem;
    height: 1rem;
    color: var(--gcc-accent);
}

.gcc-checkbox-group {
    display: flex;
    align-items: center;
}

.gcc-checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.gcc-checkbox-group label {
    margin-bottom: 0;
}

.gcc-checkbox-group a {
    color: var(--gcc-primary);
    text-decoration: underline;
}

.gcc-submit-btn {
    background-color: var(--gcc-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 1rem;
}

.gcc-submit-btn:hover {
    background-color: #1e4a36;
}

.gcc-submit-btn i {
    margin-left: 0.5rem;
}

.gcc-faq-section {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gcc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.gcc-faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
}

.gcc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.gcc-faq-question h3 {
    font-size: 1.1rem;
    color: var(--gcc-primary);
    font-weight: 600;
    margin-right: 1rem;
}

.gcc-faq-question i {
    color: var(--gcc-secondary);
    transition: transform 0.3s;
}

.gcc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.gcc-faq-answer p {
    padding-bottom: 1rem;
    color: var(--gcc-text-light);
}

.gcc-faq-item.active .gcc-faq-question i {
    transform: rotate(180deg);
}

.gcc-faq-item.active .gcc-faq-answer {
    max-height: 300px;
}

.gcc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gcc-modal.active {
    opacity: 1;
    visibility: visible;
}


.gcc-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.gcc-modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gcc-text-light);
}

.gcc-modal-icon {
    font-size: 3rem;
    color: var(--gcc-primary);
    margin-bottom: 1rem;
}

.gcc-modal h3 {
    color: var(--gcc-primary);
    margin-bottom: 1rem;
}

.gcc-modal p {
    margin-bottom: 1.5rem;
    color: var(--gcc-text-light);
}

.gcc-modal-btn {
    background-color: var(--gcc-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.gcc-modal-btn:hover {
    background-color: #1e4a36;
}

@media (max-width: 768px) {
    .gcc-contact-section,
    .gcc-faq-section {
        padding: 1.5rem;
    }
    
    .gcc-section-header h2 {
        font-size: 1.8rem;
    }
    
    .gcc-faq-question h3 {
        font-size: 1rem;
    }
}

.gccpage-main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.gccpage-hero-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 5px solid #c19a6b;
}

.gccpage-hero-section h1 {
    color: #2a5c45;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.gccpage-hero-section p {
    color: #6c757d;
    font-size: 1.1rem;
}

.gccpage-hero-section i {
    margin-right: 0.8rem;
    color: #c19a6b;
}

.gccpage-content-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.gccpage-point {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #e9ecef;
}

.gccpage-point:last-child {
    border-bottom: none;
}

.gccpage-point h3 {
    color: #2a5c45;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.gccpage-point i {
    margin-right: 0.8rem;
    color: #bb3636;
    font-size: 1.1rem;
}

.gccpage-point p {
    color: #495057;
    line-height: 1.7;
    padding-left: 2.2rem;
}

@media (max-width: 768px) {
    .gccpage-main-container {
        padding: 0 .5rem;
    }

    .gccpage-hero-section {
        padding: 2rem .5rem;
    }

    .gccpage-hero-section h1 {
        font-size: 2rem;
    }
    
    .gccpage-point h3 {
        font-size: 1.1rem;
    }

    .gccpage-point p {
        padding-left: 0.5rem;
        font-size: 0.8rem;
    }
}

.gccpage-main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.gccpage-hero-section p {
    color: var(--gcc-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.gccpage-hero-section strong {
    color: var(--gcc-primary);
}

.gccpage-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.gccpage-category-btn {
    padding: 0.8rem 1.5rem;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.gccpage-category-btn:hover {
    background-color: var(--gcc-primary);
    color: white;
    border-color: var(--gcc-primary);
}

.gccpage-category-btn.active {
    background-color: var(--gcc-primary);
    color: white;
    border-color: var(--gcc-primary);
}

.gccpage-games-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gccpage-game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gccpage-game-card:hover {
    transform: translateY(-5px);
}

.gccpage-game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gccpage-game-info {
    padding: 1rem;
    text-align: center;
}

.gccpage-game-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gcc-primary);
}

.gccpage-game-category {
    font-size: 0.9rem;
    color: var(--gcc-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gccpage-load-more {
    text-align: center;
    margin-top: 2rem;
}

.gccpage-load-btn {
    padding: 0.8rem 2rem;
    background-color: var(--gcc-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gccpage-load-btn:hover {
    background-color: #1e4a34;
}

@media (max-width: 1024px) {
    .gccpage-games-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gccpage-games-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gccpage-hero-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gccpage-games-container {
        grid-template-columns: 1fr;
    }
    
    .gccpage-category-filter {
        gap: 0.5rem;
    }
    
    .gccpage-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}