/* GameJoyTribe.com - Tribal Gaming Community Design */
/* Color Palette: Deep Forest Green, Tribal Rust, Earth Brown, Golden Amber */

:root {
    --gamejoytribe-forest: #2D5016;
    --gamejoytribe-rust: #CC5500;
    --gamejoytribe-earth: #8B4513;
    --gamejoytribe-amber: #FFA500;
    --gamejoytribe-dark: #1A2F0A;
    --gamejoytribe-cream: #F5F5DC;
    --gamejoytribe-white: #FFFFFF;
    --gamejoytribe-light-bg: #FAF8F3;
    --gamejoytribe-text: #2C3E1F;
    --gamejoytribe-text-light: #5A6B4D;
    --gamejoytribe-border: #D4C5A9;
    --gamejoytribe-radius: 8px;
    --gamejoytribe-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
    --gamejoytribe-shadow-lg: 0 8px 24px rgba(45, 80, 22, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gamejoytribe-text);
    background: var(--gamejoytribe-white);
    line-height: 1.7;
    font-size: 16px;
}

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

.gamejoytribe-notice-bar {
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    color: var(--gamejoytribe-white);
    padding: 14px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid var(--gamejoytribe-rust);
}

.gamejoytribe-notice-bar p {
    margin: 0;
    letter-spacing: 0.3px;
}

.gamejoytribe-navigation {
    background: var(--gamejoytribe-white);
    box-shadow: 0 3px 15px rgba(45, 80, 22, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gamejoytribe-amber);
}

.gamejoytribe-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.gamejoytribe-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gamejoytribe-forest);
    font-weight: 800;
    font-size: 26px;
    gap: 12px;
    transition: all 0.3s ease;
}

.gamejoytribe-brand:hover {
    color: var(--gamejoytribe-rust);
    transform: translateY(-2px);
}

.gamejoytribe-brand-logo {
    height: 48px;
    width: auto;
    border-radius: 6px;
}

.gamejoytribe-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--gamejoytribe-forest);
    padding: 10px 12px;
    cursor: pointer;
    border-radius: var(--gamejoytribe-radius);
    transition: all 0.3s ease;
}

.gamejoytribe-menu-toggle:hover {
    background: var(--gamejoytribe-forest);
}

.gamejoytribe-menu-toggle-line {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gamejoytribe-forest);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.gamejoytribe-menu-toggle:hover .gamejoytribe-menu-toggle-line {
    background: var(--gamejoytribe-white);
}

.gamejoytribe-nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    margin: 0;
}

.gamejoytribe-nav-links li {
    margin: 0;
}

.gamejoytribe-nav-link {
    padding: 11px 20px;
    color: var(--gamejoytribe-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--gamejoytribe-radius);
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 0.3px;
}

.gamejoytribe-nav-link:hover {
    background: var(--gamejoytribe-light-bg);
    color: var(--gamejoytribe-forest);
    transform: translateY(-1px);
}

.gamejoytribe-nav-link.gamejoytribe-active {
    background: var(--gamejoytribe-forest);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-nav-cta {
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    color: var(--gamejoytribe-white);
    padding: 11px 24px;
    border-radius: var(--gamejoytribe-radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--gamejoytribe-shadow-lg);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-hero {
    background: linear-gradient(135deg, var(--gamejoytribe-forest) 0%, var(--gamejoytribe-earth) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.gamejoytribe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M30 0 L45 15 L30 30 L15 15 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.gamejoytribe-hero-wrapper {
    position: relative;
    z-index: 1;
}

.gamejoytribe-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: var(--gamejoytribe-radius);
    color: var(--gamejoytribe-white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gamejoytribe-hero-badge i {
    margin-right: 8px;
    color: var(--gamejoytribe-amber);
}

.gamejoytribe-hero-heading {
    font-size: 52px;
    font-weight: 900;
    color: var(--gamejoytribe-white);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.gamejoytribe-hero-text {
    font-size: 19px;
    color: var(--gamejoytribe-cream);
    margin-bottom: 36px;
    max-width: 700px;
    line-height: 1.7;
}

.gamejoytribe-hero-button {
    display: inline-block;
    background: var(--gamejoytribe-rust);
    color: var(--gamejoytribe-white);
    padding: 16px 40px;
    border-radius: var(--gamejoytribe-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.4);
}

.gamejoytribe-hero-button:hover {
    background: var(--gamejoytribe-amber);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(204, 85, 0, 0.5);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-section {
    padding: 80px 0;
}

.gamejoytribe-section-sm {
    padding: 60px 0;
}

.gamejoytribe-bg-white {
    background: var(--gamejoytribe-white);
}

.gamejoytribe-bg-light {
    background: var(--gamejoytribe-light-bg);
}

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

.gamejoytribe-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gamejoytribe-forest);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gamejoytribe-section p {
    font-size: 17px;
    color: var(--gamejoytribe-text-light);
    line-height: 1.7;
}

.gamejoytribe-mb-5 {
    margin-bottom: 50px;
}

.gamejoytribe-mb-4 {
    margin-bottom: 40px;
}

.gamejoytribe-mb-3 {
    margin-bottom: 30px;
}

.gamejoytribe-mt-5 {
    margin-top: 50px;
}

.gamejoytribe-mt-3 {
    margin-top: 30px;
}

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

.gamejoytribe-feature-box {
    background: var(--gamejoytribe-white);
    padding: 36px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gamejoytribe-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--gamejoytribe-shadow-lg);
    border-color: var(--gamejoytribe-amber);
}

.gamejoytribe-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 32px;
    color: var(--gamejoytribe-white);
}

.gamejoytribe-feature-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 14px;
}

.gamejoytribe-feature-text {
    font-size: 15px;
    color: var(--gamejoytribe-text-light);
    line-height: 1.7;
}

.gamejoytribe-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.gamejoytribe-game-box {
    background: var(--gamejoytribe-white);
    border-radius: var(--gamejoytribe-radius);
    overflow: hidden;
    box-shadow: var(--gamejoytribe-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.gamejoytribe-game-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--gamejoytribe-shadow-lg);
    border-color: var(--gamejoytribe-rust);
}

.gamejoytribe-game-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gamejoytribe-rust);
    color: var(--gamejoytribe-white);
    padding: 6px 14px;
    border-radius: var(--gamejoytribe-radius);
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.gamejoytribe-game-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--gamejoytribe-light-bg);
}

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

.gamejoytribe-game-box:hover .gamejoytribe-game-image img {
    transform: scale(1.08);
}

.gamejoytribe-game-info {
    padding: 26px;
}

.gamejoytribe-game-name {
    font-size: 21px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 12px;
}

.gamejoytribe-game-description {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.gamejoytribe-game-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--gamejoytribe-text-light);
}

.gamejoytribe-game-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gamejoytribe-game-launch {
    width: 100%;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    color: var(--gamejoytribe-white);
    border: none;
    padding: 13px 24px;
    border-radius: var(--gamejoytribe-radius);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gamejoytribe-game-launch:hover {
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    transform: translateY(-2px);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.gamejoytribe-stat-box {
    background: var(--gamejoytribe-white);
    padding: 38px 30px;
    border-radius: var(--gamejoytribe-radius);
    text-align: center;
    box-shadow: var(--gamejoytribe-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.gamejoytribe-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
}

.gamejoytribe-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--gamejoytribe-shadow-lg);
    border-color: var(--gamejoytribe-forest);
}

.gamejoytribe-stat-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--gamejoytribe-rust);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.gamejoytribe-stat-label {
    font-size: 16px;
    color: var(--gamejoytribe-text);
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.gamejoytribe-stat-icon {
    font-size: 28px;
    color: var(--gamejoytribe-amber);
}

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

.gamejoytribe-content-medium {
    max-width: 900px;
    margin: 0 auto;
}

.gamejoytribe-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    color: var(--gamejoytribe-white);
    padding: 14px 34px;
    border-radius: var(--gamejoytribe-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--gamejoytribe-shadow-lg);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-btn-secondary {
    background: var(--gamejoytribe-white);
    color: var(--gamejoytribe-forest);
    border: 2px solid var(--gamejoytribe-forest);
}

.gamejoytribe-btn-secondary:hover {
    background: var(--gamejoytribe-forest);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-flex-center {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.gamejoytribe-alert {
    padding: 22px 28px;
    border-radius: var(--gamejoytribe-radius);
    margin: 20px 0;
    border-left: 4px solid;
}

.gamejoytribe-alert-info {
    background: #E8F4F8;
    border-left-color: #0288D1;
    color: #01579B;
}

.gamejoytribe-alert-success {
    background: #E8F5E9;
    border-left-color: #4CAF50;
    color: #1B5E20;
}

.gamejoytribe-alert-danger {
    background: #FFEBEE;
    border-left-color: #F44336;
    color: #B71C1C;
}

.gamejoytribe-hero-alt {
    background: linear-gradient(135deg, var(--gamejoytribe-forest) 0%, var(--gamejoytribe-earth) 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gamejoytribe-hero-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M30 0 L45 15 L30 30 L15 15 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.gamejoytribe-hero-alt-content {
    position: relative;
    z-index: 1;
}

.gamejoytribe-hero-alt-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: var(--gamejoytribe-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gamejoytribe-hero-alt h1 {
    font-size: 46px;
    font-weight: 900;
    color: var(--gamejoytribe-white);
    margin-bottom: 16px;
}

.gamejoytribe-hero-alt-subtitle {
    font-size: 19px;
    color: var(--gamejoytribe-cream);
    max-width: 650px;
    margin: 0 auto;
}

.gamejoytribe-legal-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
}

.gamejoytribe-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.gamejoytribe-overview-box {
    background: var(--gamejoytribe-white);
    padding: 32px;
    border-radius: var(--gamejoytribe-radius);
    text-align: center;
    box-shadow: var(--gamejoytribe-shadow);
    transition: all 0.3s ease;
}

.gamejoytribe-overview-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--gamejoytribe-shadow-lg);
}

.gamejoytribe-overview-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gamejoytribe-white);
}

.gamejoytribe-overview-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 12px;
}

.gamejoytribe-overview-box p,
.gamejoytribe-overview-box ul {
    font-size: 15px;
    color: var(--gamejoytribe-text-light);
    line-height: 1.7;
}

.gamejoytribe-legal-list-plain {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.gamejoytribe-legal-list-plain li {
    padding: 4px 0;
}

.gamejoytribe-contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 36px;
    margin-top: 40px;
}

.gamejoytribe-contact-info-box {
    background: var(--gamejoytribe-white);
    padding: 36px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-contact-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 24px;
}

.gamejoytribe-contact-info-box h3 i {
    margin-right: 10px;
    color: var(--gamejoytribe-rust);
}

.gamejoytribe-contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gamejoytribe-contact-item {
    display: flex;
    gap: 16px;
}

.gamejoytribe-contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gamejoytribe-white);
    font-size: 20px;
}

.gamejoytribe-contact-item-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 6px;
}

.gamejoytribe-contact-item-content p {
    font-size: 15px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

.gamejoytribe-contact-item-content a {
    color: var(--gamejoytribe-rust);
    text-decoration: none;
}

.gamejoytribe-contact-item-content a:hover {
    text-decoration: underline;
}

.gamejoytribe-contact-form-box {
    background: var(--gamejoytribe-white);
    padding: 36px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 14px;
}

.gamejoytribe-contact-form-box h3 i {
    margin-right: 10px;
    color: var(--gamejoytribe-rust);
}

.gamejoytribe-contact-form-desc {
    font-size: 15px;
    color: var(--gamejoytribe-text-light);
    margin-bottom: 24px;
}

.gamejoytribe-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.gamejoytribe-form-group {
    margin-bottom: 20px;
}

.gamejoytribe-form-label {
    display: block;
    font-weight: 600;
    color: var(--gamejoytribe-text);
    margin-bottom: 8px;
    font-size: 14px;
}

.gamejoytribe-form-input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gamejoytribe-border);
    border-radius: var(--gamejoytribe-radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--gamejoytribe-white);
}

.gamejoytribe-form-input:focus {
    outline: none;
    border-color: var(--gamejoytribe-forest);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.gamejoytribe-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.gamejoytribe-legal-section {
    margin-bottom: 40px;
}

.gamejoytribe-legal-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gamejoytribe-legal-section h2 i {
    color: var(--gamejoytribe-rust);
    font-size: 26px;
}

.gamejoytribe-legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gamejoytribe-earth);
    margin: 24px 0 14px;
}

.gamejoytribe-legal-section h3 i {
    margin-right: 8px;
    color: var(--gamejoytribe-amber);
}

.gamejoytribe-legal-section h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--gamejoytribe-forest);
    margin: 20px 0 12px;
}

.gamejoytribe-legal-section p {
    font-size: 16px;
    color: var(--gamejoytribe-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.gamejoytribe-legal-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.gamejoytribe-legal-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 15px;
    color: var(--gamejoytribe-text);
    line-height: 1.7;
}

.gamejoytribe-legal-list li::before {
    content: '▸';
    position: absolute;
    left: 10px;
    color: var(--gamejoytribe-rust);
    font-weight: 700;
}

.gamejoytribe-legal-section a {
    color: var(--gamejoytribe-rust);
    text-decoration: none;
    font-weight: 600;
}

.gamejoytribe-legal-section a:hover {
    text-decoration: underline;
}

.gamejoytribe-footer {
    background: linear-gradient(135deg, var(--gamejoytribe-dark) 0%, var(--gamejoytribe-forest) 100%);
    color: var(--gamejoytribe-cream);
    padding: 60px 0 30px;
    position: relative;
}

.gamejoytribe-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
}

.gamejoytribe-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.gamejoytribe-footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gamejoytribe-white);
    margin-bottom: 20px;
}

.gamejoytribe-footer-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--gamejoytribe-cream);
}

.gamejoytribe-footer-section a {
    color: var(--gamejoytribe-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gamejoytribe-footer-section a:hover {
    color: var(--gamejoytribe-amber);
}

.gamejoytribe-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: var(--gamejoytribe-radius);
    margin-bottom: 30px;
    border-left: 4px solid var(--gamejoytribe-amber);
}

.gamejoytribe-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--gamejoytribe-cream);
}

.gamejoytribe-disclaimer p:last-child {
    margin-bottom: 0;
}

.gamejoytribe-disclaimer a {
    color: var(--gamejoytribe-amber);
    text-decoration: none;
    font-weight: 600;
}

.gamejoytribe-disclaimer a:hover {
    text-decoration: underline;
}

.gamejoytribe-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gamejoytribe-footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.gamejoytribe-footer-bottom a {
    color: var(--gamejoytribe-amber);
    text-decoration: none;
    margin: 0 8px;
}

.gamejoytribe-footer-bottom a:hover {
    text-decoration: underline;
}

.gamejoytribe-cookie-popup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 420px;
    z-index: 10000;
    animation: slideInUp 0.4s ease;
}

.gamejoytribe-cookie-content {
    background: var(--gamejoytribe-white);
    padding: 26px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gamejoytribe-amber);
}

.gamejoytribe-cookie-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 12px;
}

.gamejoytribe-cookie-message {
    font-size: 14px;
    color: var(--gamejoytribe-text);
    margin-bottom: 18px;
    line-height: 1.6;
}

.gamejoytribe-cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gamejoytribe-cookie-accept {
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    color: var(--gamejoytribe-white);
    border: none;
    padding: 11px 24px;
    border-radius: var(--gamejoytribe-radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gamejoytribe-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-cookie-link {
    color: var(--gamejoytribe-rust);
    text-decoration: none;
    padding: 11px 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.gamejoytribe-cookie-link:hover {
    text-decoration: underline;
}

.gamejoytribe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gamejoytribe-modal.gamejoytribe-active {
    display: flex;
}

.gamejoytribe-modal-content {
    background: var(--gamejoytribe-white);
    border-radius: var(--gamejoytribe-radius);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gamejoytribe-modal-header {
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gamejoytribe-amber);
}

.gamejoytribe-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gamejoytribe-white);
    margin: 0;
}

.gamejoytribe-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--gamejoytribe-white);
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.gamejoytribe-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.gamejoytribe-modal-body {
    padding: 0;
    height: 70vh;
}

.gamejoytribe-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gamejoytribe-menu-toggle {
        display: block;
    }

    .gamejoytribe-nav-links {
        position: fixed;
        top: 94px;
        left: 0;
        right: 0;
        background: var(--gamejoytribe-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 94px);
        overflow-y: auto;
    }

    .gamejoytribe-nav-links.gamejoytribe-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .gamejoytribe-nav-links li {
        width: 100%;
    }

    .gamejoytribe-nav-link {
        display: block;
        padding: 14px 18px;
        font-size: 16px;
        text-align: left;
    }

    .gamejoytribe-nav-cta {
        display: block;
        text-align: center;
        margin-top: 8px;
    }

    .gamejoytribe-hero-heading {
        font-size: 36px;
    }

    .gamejoytribe-hero-text {
        font-size: 17px;
    }

    .gamejoytribe-section h2 {
        font-size: 32px;
    }

    .gamejoytribe-hero-alt h1 {
        font-size: 34px;
    }

    .gamejoytribe-features-grid,
    .gamejoytribe-games-grid {
        grid-template-columns: 1fr;
    }

    .gamejoytribe-contact-layout {
        grid-template-columns: 1fr;
    }

    .gamejoytribe-cookie-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }

    .gamejoytribe-modal-content {
        max-height: 95vh;
    }

    .gamejoytribe-modal-body {
        height: 60vh;
    }

    .gamejoytribe-footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gamejoytribe-container {
        padding: 0 16px;
    }

    .gamejoytribe-hero {
        padding: 60px 0;
    }

    .gamejoytribe-hero-heading {
        font-size: 30px;
    }

    .gamejoytribe-section {
        padding: 50px 0;
    }

    .gamejoytribe-section h2 {
        font-size: 28px;
    }

    .gamejoytribe-btn,
    .gamejoytribe-hero-button {
        padding: 13px 26px;
        font-size: 15px;
    }

    .gamejoytribe-footer {
        padding: 40px 0 20px;
    }
}

/* NEW STRUCTURE STYLES */

/* Split Layout */
.gamejoytribe-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gamejoytribe-split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gamejoytribe-forest);
}

.gamejoytribe-stats-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

.gamejoytribe-stat-item {
    padding: 20px;
    background: var(--gamejoytribe-white);
    border-radius: var(--gamejoytribe-radius);
    border-left: 4px solid var(--gamejoytribe-rust);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-stat-number-large {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--gamejoytribe-rust);
    margin-bottom: 5px;
}

.gamejoytribe-stat-text {
    font-size: 16px;
    color: var(--gamejoytribe-text);
    font-weight: 600;
}

.gamejoytribe-highlight-box {
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    padding: 40px;
    border-radius: var(--gamejoytribe-radius);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-highlight-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--gamejoytribe-white);
}

.gamejoytribe-highlight-box h3 i {
    color: var(--gamejoytribe-amber);
    margin-right: 10px;
}

.gamejoytribe-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gamejoytribe-benefit-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.gamejoytribe-benefit-list li:last-child {
    border-bottom: none;
}

.gamejoytribe-benefit-list li i {
    color: var(--gamejoytribe-amber);
    font-size: 18px;
    margin-top: 2px;
}

/* Horizontal Game Cards */
.gamejoytribe-featured-games-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gamejoytribe-game-card-horizontal {
    display: flex;
    background: var(--gamejoytribe-white);
    border-radius: var(--gamejoytribe-radius);
    overflow: hidden;
    box-shadow: var(--gamejoytribe-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gamejoytribe-game-card-horizontal:hover {
    transform: translateX(6px);
    box-shadow: var(--gamejoytribe-shadow-lg);
    border-color: var(--gamejoytribe-rust);
}

.gamejoytribe-game-card-image {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

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

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

.gamejoytribe-game-card-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gamejoytribe-game-badge-inline {
    display: inline-block;
    background: var(--gamejoytribe-rust);
    color: var(--gamejoytribe-white);
    padding: 4px 12px;
    border-radius: var(--gamejoytribe-radius);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
}

.gamejoytribe-game-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 10px;
}

.gamejoytribe-game-card-content p {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
    margin-bottom: 14px;
    flex: 1;
}

.gamejoytribe-game-stats-inline {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gamejoytribe-text-light);
}

.gamejoytribe-game-stats-inline span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Horizontal Steps */
.gamejoytribe-steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.gamejoytribe-step-card {
    background: var(--gamejoytribe-white);
    padding: 32px;
    border-radius: var(--gamejoytribe-radius);
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: var(--gamejoytribe-shadow);
    position: relative;
}

.gamejoytribe-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    color: var(--gamejoytribe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.gamejoytribe-step-icon {
    font-size: 48px;
    color: var(--gamejoytribe-forest);
    margin-bottom: 16px;
}

.gamejoytribe-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 10px;
}

.gamejoytribe-step-card p {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
}

.gamejoytribe-step-arrow {
    font-size: 32px;
    color: var(--gamejoytribe-rust);
}

/* Two Column Layout */
.gamejoytribe-two-column-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
}

.gamejoytribe-column-narrow .gamejoytribe-info-card-stacked {
    background: var(--gamejoytribe-white);
    border-radius: var(--gamejoytribe-radius);
    padding: 20px;
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-info-item {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--gamejoytribe-border);
}

.gamejoytribe-info-item:last-child {
    border-bottom: none;
}

.gamejoytribe-info-item i {
    font-size: 32px;
    color: var(--gamejoytribe-rust);
    margin-bottom: 10px;
}

.gamejoytribe-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 5px;
}

.gamejoytribe-info-item p {
    font-size: 13px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

.gamejoytribe-column-wide h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--gamejoytribe-forest);
}

.gamejoytribe-feature-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 30px;
}

.gamejoytribe-feature-detailed {
    display: flex;
    gap: 20px;
}

.gamejoytribe-feature-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gamejoytribe-white);
    flex-shrink: 0;
}

.gamejoytribe-feature-detailed-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 8px;
}

.gamejoytribe-feature-detailed-content p {
    font-size: 15px;
    color: var(--gamejoytribe-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Large CTA Box */
.gamejoytribe-cta-box-large {
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    padding: 50px;
    border-radius: var(--gamejoytribe-radius);
    text-align: center;
}

.gamejoytribe-cta-content h2 {
    font-size: 38px;
    color: var(--gamejoytribe-white);
    margin-bottom: 16px;
}

.gamejoytribe-cta-content > p {
    font-size: 18px;
    color: var(--gamejoytribe-cream);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gamejoytribe-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.gamejoytribe-btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.gamejoytribe-btn-large i {
    margin-right: 8px;
}

/* Games Page - Sidebar Layout */
.gamejoytribe-games-sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.gamejoytribe-games-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gamejoytribe-sidebar-card {
    background: var(--gamejoytribe-white);
    padding: 24px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 16px;
}

.gamejoytribe-sidebar-card h3 i {
    margin-right: 8px;
    color: var(--gamejoytribe-rust);
}

.gamejoytribe-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gamejoytribe-category-list li {
    margin-bottom: 8px;
}

.gamejoytribe-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--gamejoytribe-radius);
    text-decoration: none;
    color: var(--gamejoytribe-text);
    transition: all 0.3s ease;
    font-size: 14px;
}

.gamejoytribe-category-list a:hover,
.gamejoytribe-category-active {
    background: var(--gamejoytribe-light-bg);
    color: var(--gamejoytribe-forest);
}

.gamejoytribe-category-list a i {
    margin-right: 8px;
}

.gamejoytribe-category-list a span {
    background: var(--gamejoytribe-rust);
    color: var(--gamejoytribe-white);
    padding: 2px 8px;
    border-radius: var(--gamejoytribe-radius);
    font-size: 12px;
    font-weight: 600;
}

.gamejoytribe-sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gamejoytribe-sidebar-stat {
    text-align: center;
}

.gamejoytribe-sidebar-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--gamejoytribe-rust);
}

.gamejoytribe-sidebar-stat-label {
    font-size: 11px;
    color: var(--gamejoytribe-text-light);
}

.gamejoytribe-sidebar-notice {
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    color: var(--gamejoytribe-white);
    text-align: center;
}

.gamejoytribe-sidebar-notice i {
    font-size: 32px;
    color: var(--gamejoytribe-amber);
    margin-bottom: 12px;
}

.gamejoytribe-sidebar-notice p {
    font-size: 13px;
    margin: 0;
}

/* Games Header Bar */
.gamejoytribe-games-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gamejoytribe-border);
}

.gamejoytribe-games-header-bar h2 {
    font-size: 28px;
    color: var(--gamejoytribe-forest);
    margin: 0;
}

.gamejoytribe-games-count {
    background: var(--gamejoytribe-light-bg);
    padding: 6px 14px;
    border-radius: var(--gamejoytribe-radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--gamejoytribe-text);
}

/* Masonry Grid */
.gamejoytribe-games-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gamejoytribe-game-tile {
    position: relative;
    border-radius: var(--gamejoytribe-radius);
    overflow: hidden;
    box-shadow: var(--gamejoytribe-shadow);
    cursor: pointer;
    height: 250px;
}

.gamejoytribe-game-tile-large {
    grid-row: span 2;
    height: 520px;
}

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

.gamejoytribe-game-tile-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gamejoytribe-rust);
    color: var(--gamejoytribe-white);
    padding: 5px 12px;
    border-radius: var(--gamejoytribe-radius);
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.gamejoytribe-game-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gamejoytribe-game-tile:hover .gamejoytribe-game-tile-overlay {
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), rgba(45, 80, 22, 0.7));
}

.gamejoytribe-game-tile-overlay h3 {
    font-size: 20px;
    color: var(--gamejoytribe-white);
    margin-bottom: 6px;
}

.gamejoytribe-game-tile-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.gamejoytribe-game-tile-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* Compact List View */
.gamejoytribe-games-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gamejoytribe-game-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gamejoytribe-white);
    padding: 16px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
    transition: all 0.3s ease;
}

.gamejoytribe-game-list-item:hover {
    transform: translateX(6px);
    box-shadow: var(--gamejoytribe-shadow-lg);
}

.gamejoytribe-game-list-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--gamejoytribe-radius);
    object-fit: cover;
}

.gamejoytribe-game-list-info {
    flex: 1;
}

.gamejoytribe-game-list-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 4px;
}

.gamejoytribe-game-list-info p {
    font-size: 13px;
    color: var(--gamejoytribe-text-light);
    margin-bottom: 6px;
}

.gamejoytribe-game-list-stats {
    font-size: 12px;
    color: var(--gamejoytribe-text-light);
}

.gamejoytribe-game-list-stats i {
    color: var(--gamejoytribe-rust);
    margin-right: 4px;
}

.gamejoytribe-game-launch-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    color: var(--gamejoytribe-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamejoytribe-game-launch-small:hover {
    transform: scale(1.1);
    box-shadow: var(--gamejoytribe-shadow);
}

/* Horizontal Features */
.gamejoytribe-horizontal-feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gamejoytribe-horizontal-feature {
    background: var(--gamejoytribe-white);
    padding: 24px;
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-horizontal-feature i {
    font-size: 36px;
    color: var(--gamejoytribe-rust);
}

.gamejoytribe-horizontal-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 4px;
}

.gamejoytribe-horizontal-feature p {
    font-size: 13px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

/* About Page - Intro Layout */
.gamejoytribe-about-intro-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
}

.gamejoytribe-about-intro-content h2 {
    font-size: 36px;
    color: var(--gamejoytribe-forest);
    margin-bottom: 20px;
}

.gamejoytribe-about-intro-content p {
    font-size: 16px;
    color: var(--gamejoytribe-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.gamejoytribe-about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
}

.gamejoytribe-about-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gamejoytribe-light-bg);
    border-radius: var(--gamejoytribe-radius);
}

.gamejoytribe-about-highlight-item i {
    font-size: 24px;
    color: var(--gamejoytribe-rust);
}

/* Circular Stats */
.gamejoytribe-about-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gamejoytribe-circular-stat {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gamejoytribe-shadow-lg);
}

.gamejoytribe-circular-stat-inner {
    text-align: center;
}

.gamejoytribe-circular-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--gamejoytribe-white);
    margin-bottom: 5px;
}

.gamejoytribe-circular-stat-label {
    font-size: 14px;
    color: var(--gamejoytribe-cream);
}

/* Timeline Layout */
.gamejoytribe-features-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.gamejoytribe-features-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gamejoytribe-border);
    transform: translateX(-50%);
}

.gamejoytribe-timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.gamejoytribe-timeline-left .gamejoytribe-timeline-content {
    grid-column: 1;
    text-align: right;
}

.gamejoytribe-timeline-right .gamejoytribe-timeline-content {
    grid-column: 3;
    text-align: left;
}

.gamejoytribe-timeline-marker {
    grid-column: 2;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gamejoytribe-rust), var(--gamejoytribe-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gamejoytribe-white);
    z-index: 1;
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-timeline-content {
    background: var(--gamejoytribe-white);
    padding: 24px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 10px;
}

.gamejoytribe-timeline-content p {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

/* Three Equal Columns */
.gamejoytribe-three-column-equal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gamejoytribe-promise-card {
    background: var(--gamejoytribe-white);
    padding: 32px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
    text-align: center;
}

.gamejoytribe-promise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--gamejoytribe-white);
}

.gamejoytribe-promise-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 12px;
}

.gamejoytribe-promise-card > p {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
    margin-bottom: 18px;
}

.gamejoytribe-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.gamejoytribe-check-list li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--gamejoytribe-text);
}

.gamejoytribe-check-list li i {
    color: var(--gamejoytribe-rust);
    margin-right: 8px;
}

/* Split CTA */
.gamejoytribe-about-cta-split {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: var(--gamejoytribe-white);
    padding: 40px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-about-cta-text h2 {
    font-size: 32px;
    color: var(--gamejoytribe-forest);
    margin-bottom: 14px;
}

.gamejoytribe-about-cta-text p {
    font-size: 16px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

.gamejoytribe-about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gamejoytribe-about-cta-buttons .gamejoytribe-btn {
    white-space: nowrap;
}

/* Alert with Icon */
.gamejoytribe-alert-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 136, 209, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0288D1;
    flex-shrink: 0;
}

.gamejoytribe-alert-content {
    flex: 1;
}

.gamejoytribe-alert-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #01579B;
    margin-bottom: 8px;
}

.gamejoytribe-alert-content p {
    margin: 0;
}

.gamejoytribe-alert {
    display: flex;
    gap: 20px;
    align-items: start;
}

/* Contact Page - Reverse Layout */
.gamejoytribe-contact-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gamejoytribe-contact-benefit-item {
    background: var(--gamejoytribe-white);
    padding: 28px;
    border-radius: var(--gamejoytribe-radius);
    text-align: center;
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-contact-benefit-item i {
    font-size: 42px;
    color: var(--gamejoytribe-rust);
    margin-bottom: 16px;
}

.gamejoytribe-contact-benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gamejoytribe-forest);
    margin-bottom: 8px;
}

.gamejoytribe-contact-benefit-item p {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

.gamejoytribe-contact-reverse-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.gamejoytribe-contact-form-area {
    background: var(--gamejoytribe-white);
    padding: 40px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.gamejoytribe-contact-form-header i {
    font-size: 48px;
    color: var(--gamejoytribe-rust);
    margin-bottom: 12px;
}

.gamejoytribe-contact-form-header h2 {
    font-size: 28px;
    color: var(--gamejoytribe-forest);
    margin-bottom: 10px;
}

.gamejoytribe-contact-form-header p {
    font-size: 14px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

.gamejoytribe-form-label i {
    margin-right: 6px;
    color: var(--gamejoytribe-rust);
}

.gamejoytribe-btn-block {
    width: 100%;
}

.gamejoytribe-contact-info-area {
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    padding: 40px 30px;
    border-radius: var(--gamejoytribe-radius);
    color: var(--gamejoytribe-white);
}

.gamejoytribe-contact-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.gamejoytribe-contact-info-header i {
    font-size: 42px;
    color: var(--gamejoytribe-amber);
    margin-bottom: 12px;
}

.gamejoytribe-contact-info-header h2 {
    font-size: 24px;
    color: var(--gamejoytribe-white);
    margin: 0;
}

.gamejoytribe-contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gamejoytribe-contact-info-block {
    display: flex;
    gap: 16px;
    align-items: start;
}

.gamejoytribe-contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gamejoytribe-amber);
    flex-shrink: 0;
}

.gamejoytribe-contact-info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gamejoytribe-white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gamejoytribe-contact-info-text p {
    font-size: 14px;
    color: var(--gamejoytribe-cream);
    margin: 0;
    line-height: 1.6;
}

.gamejoytribe-contact-info-text a {
    color: var(--gamejoytribe-cream);
    text-decoration: none;
}

.gamejoytribe-contact-info-text a:hover {
    color: var(--gamejoytribe-amber);
}

.gamejoytribe-contact-info-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.gamejoytribe-contact-info-footer p {
    font-size: 13px;
    color: var(--gamejoytribe-cream);
    margin: 0;
}

.gamejoytribe-contact-info-footer i {
    color: var(--gamejoytribe-amber);
    margin-right: 6px;
}

.gamejoytribe-contact-bottom-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--gamejoytribe-white);
    padding: 40px;
    border-radius: var(--gamejoytribe-radius);
    box-shadow: var(--gamejoytribe-shadow);
}

.gamejoytribe-contact-bottom-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gamejoytribe-forest), var(--gamejoytribe-earth));
    border-radius: var(--gamejoytribe-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gamejoytribe-white);
    flex-shrink: 0;
}

.gamejoytribe-contact-bottom-content {
    flex: 1;
}

.gamejoytribe-contact-bottom-content h2 {
    font-size: 28px;
    color: var(--gamejoytribe-forest);
    margin-bottom: 10px;
}

.gamejoytribe-contact-bottom-content p {
    font-size: 15px;
    color: var(--gamejoytribe-text-light);
    margin: 0;
}

.gamejoytribe-contact-bottom-buttons {
    display: flex;
    gap: 12px;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .gamejoytribe-split-layout,
    .gamejoytribe-two-column-layout,
    .gamejoytribe-about-intro-layout,
    .gamejoytribe-games-sidebar-layout,
    .gamejoytribe-contact-reverse-layout {
        grid-template-columns: 1fr;
    }
    
    .gamejoytribe-steps-horizontal {
        flex-direction: column;
    }
    
    .gamejoytribe-step-arrow {
        transform: rotate(90deg);
    }
    
    .gamejoytribe-game-card-horizontal {
        flex-direction: column;
    }
    
    .gamejoytribe-game-card-image {
        width: 100%;
        height: 200px;
    }
    
    .gamejoytribe-games-masonry {
        grid-template-columns: 1fr;
    }
    
    .gamejoytribe-game-tile {
        height: 300px;
    }
    
    .gamejoytribe-game-tile-large {
        grid-row: span 1;
        height: 300px;
    }
    
    .gamejoytribe-three-column-equal,
    .gamejoytribe-horizontal-feature-boxes,
    .gamejoytribe-contact-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gamejoytribe-timeline-item {
        grid-template-columns: 1fr;
        text-align: left !important;
    }
    
    .gamejoytribe-timeline-left .gamejoytribe-timeline-content,
    .gamejoytribe-timeline-right .gamejoytribe-timeline-content {
        grid-column: 1;
        text-align: left;
    }
    
    .gamejoytribe-timeline-marker {
        grid-column: 1;
        margin: 0 auto;
    }
    
    .gamejoytribe-features-timeline::before {
        display: none;
    }
    
    .gamejoytribe-about-cta-split {
        grid-template-columns: 1fr;
    }
    
    .gamejoytribe-about-cta-buttons {
        flex-direction: row;
    }
    
    .gamejoytribe-contact-bottom-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .gamejoytribe-contact-bottom-buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .gamejoytribe-cta-buttons {
        flex-direction: column;
    }
    
    .gamejoytribe-btn-large {
        width: 100%;
    }
    
    .gamejoytribe-sidebar-stats {
        grid-template-columns: 1fr;
    }
}

