/* SharedGameZone.com - Minimalistic Modern Light Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Styles - Clean Minimal Design */
.sharedgamezone-navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sharedgamezone-navbar-scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.sharedgamezone-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sharedgamezone-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a202c;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.sharedgamezone-navbar-brand:hover {
    color: #3182ce;
}

.sharedgamezone-navbar-logo {
    height: 42px;
    width: auto;
    margin-right: 12px;
    border-radius: 8px;
}

.sharedgamezone-navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.sharedgamezone-navbar-menu li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.sharedgamezone-navbar-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.sharedgamezone-navbar-link:hover,
.sharedgamezone-navbar-link.active {
    color: #3182ce;
    background: #ebf8ff;
}

.sharedgamezone-navbar-cta {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
    white-space: nowrap;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.sharedgamezone-navbar-cta:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.35);
    text-decoration: none;
}

.sharedgamezone-navbar-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: 2px solid #3182ce;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.sharedgamezone-navbar-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: #3182ce;
    margin: 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.sharedgamezone-navbar-toggle-bar-1-active {
    transform: translateY(7px) rotate(45deg);
}

.sharedgamezone-navbar-toggle-bar-2-active {
    opacity: 0;
}

.sharedgamezone-navbar-toggle-bar-3-active {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section - Light Modern */
.sharedgamezone-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 9rem 0 6rem;
    text-align: center;
    color: #1a202c;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.sharedgamezone-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sharedgamezone-hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
    letter-spacing: -1px;
    line-height: 1.2;
}

.sharedgamezone-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sharedgamezone-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.sharedgamezone-hero-cta:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(49, 130, 206, 0.4);
}

/* Section Styles */
.sharedgamezone-section {
    padding: 5rem 0;
    background: #ffffff;
}

.sharedgamezone-section-alt {
    background: #f7fafc;
}

.sharedgamezone-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.25rem;
    color: #1a202c;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.sharedgamezone-section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: #718096;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid - Clean Cards */
.sharedgamezone-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.sharedgamezone-feature-card:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
    border-color: #bee3f8;
}

.sharedgamezone-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2c5282;
    font-size: 1.5rem;
}

.sharedgamezone-feature-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.sharedgamezone-feature-desc {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Games Grid - Modern Cards */
.sharedgamezone-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-game-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.sharedgamezone-game-card:hover {
    box-shadow: 0 12px 40px rgba(49, 130, 206, 0.2);
    transform: translateY(-8px);
    border-color: #bee3f8;
}

.sharedgamezone-game-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f7fafc;
}

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

.sharedgamezone-game-card:hover .sharedgamezone-game-image img {
    transform: scale(1.05);
}

.sharedgamezone-game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(49, 130, 206, 0.3);
}

.sharedgamezone-game-content {
    padding: 1.75rem;
}

.sharedgamezone-game-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.sharedgamezone-game-desc {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sharedgamezone-game-play {
    width: 100%;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.sharedgamezone-game-play:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.35);
}

/* Stories/Testimonials Grid */
.sharedgamezone-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-story-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sharedgamezone-story-card:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
}

.sharedgamezone-story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sharedgamezone-story-text {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.sharedgamezone-story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sharedgamezone-story-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5282;
    font-size: 1.25rem;
}

.sharedgamezone-story-info {
    flex: 1;
}

.sharedgamezone-story-name {
    font-weight: 600;
    color: #1a202c;
    font-size: 1rem;
}

.sharedgamezone-story-location {
    color: #718096;
    font-size: 0.9rem;
}

/* News/Updates Grid */
.sharedgamezone-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-news-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.sharedgamezone-news-card:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
}

.sharedgamezone-news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    padding: 1rem;
    border-radius: 10px;
    min-width: 70px;
    text-align: center;
}

.sharedgamezone-news-day {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    line-height: 1;
}

.sharedgamezone-news-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c5282;
    text-transform: uppercase;
}

.sharedgamezone-news-content {
    flex: 1;
}

.sharedgamezone-news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.sharedgamezone-news-desc {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sharedgamezone-news-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sharedgamezone-news-link:hover {
    color: #2c5aa0;
    gap: 0.75rem;
}

/* Steps Grid */
.sharedgamezone-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-step-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.sharedgamezone-step-card:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
}

.sharedgamezone-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.sharedgamezone-step-content {
    flex: 1;
}

.sharedgamezone-step-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.sharedgamezone-step-desc {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Form Styles */
.sharedgamezone-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.sharedgamezone-contact-form-container,
.sharedgamezone-contact-info-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.sharedgamezone-contact-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.sharedgamezone-contact-subtitle {
    color: #718096;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.sharedgamezone-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sharedgamezone-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sharedgamezone-form-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.sharedgamezone-form-input,
.sharedgamezone-form-select,
.sharedgamezone-form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #2d3748;
    background: #ffffff;
}

.sharedgamezone-form-input:focus,
.sharedgamezone-form-select:focus,
.sharedgamezone-form-textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.sharedgamezone-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.sharedgamezone-form-submit {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.sharedgamezone-form-submit:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.35);
}

.sharedgamezone-form-submit.sharedgamezone-btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.sharedgamezone-contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sharedgamezone-contact-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.sharedgamezone-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5282;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.sharedgamezone-contact-content {
    flex: 1;
}

.sharedgamezone-contact-detail-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.sharedgamezone-contact-detail-text {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.sharedgamezone-contact-detail-desc {
    color: #718096;
    font-size: 0.9rem;
}

.sharedgamezone-social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.sharedgamezone-social-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.sharedgamezone-social-icons {
    display: flex;
    gap: 1rem;
}

.sharedgamezone-social-link {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5282;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sharedgamezone-social-link:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    transform: translateY(-3px);
}

/* FAQ Styles */
.sharedgamezone-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sharedgamezone-faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.sharedgamezone-faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.sharedgamezone-faq-answer {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Support Options */
.sharedgamezone-support-cta {
    text-align: center;
}

.sharedgamezone-support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-support-option {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.sharedgamezone-support-option:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
}

.sharedgamezone-support-option i {
    font-size: 2.5rem;
    color: #3182ce;
    margin-bottom: 1rem;
}

.sharedgamezone-support-option h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.sharedgamezone-support-option p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sharedgamezone-support-link {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sharedgamezone-support-link:hover {
    color: #2c5aa0;
}

/* About Content */
.sharedgamezone-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.sharedgamezone-about-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Grid */
.sharedgamezone-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-team-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.sharedgamezone-team-card:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
}

.sharedgamezone-team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2c5282;
    font-size: 2.5rem;
}

.sharedgamezone-team-name {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.sharedgamezone-team-role {
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.sharedgamezone-team-desc {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Guidelines Grid */
.sharedgamezone-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.sharedgamezone-guideline-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.sharedgamezone-guideline-card:hover {
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
    transform: translateY(-5px);
}

.sharedgamezone-guideline-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2c5282;
    font-size: 1.5rem;
}

.sharedgamezone-guideline-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.sharedgamezone-guideline-desc {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact CTA */
.sharedgamezone-contact-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sharedgamezone-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.sharedgamezone-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 1rem;
}

.sharedgamezone-contact-item i {
    color: #3182ce;
    font-size: 1.15rem;
}

/* Legal Content */
.sharedgamezone-legal-content {
    max-width: 850px;
    margin: 0 auto;
}

.sharedgamezone-legal-updated {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.sharedgamezone-legal-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    line-height: 1.4;
}

.sharedgamezone-legal-subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.sharedgamezone-legal-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sharedgamezone-legal-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.sharedgamezone-legal-list li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.sharedgamezone-legal-contact {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.sharedgamezone-legal-contact p {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Final CTA */
.sharedgamezone-final-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sharedgamezone-disclaimer {
    background: #fff5e6;
    border: 1px solid #fed7aa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sharedgamezone-disclaimer strong {
    color: #78350f;
}

.sharedgamezone-cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.sharedgamezone-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.sharedgamezone-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.sharedgamezone-footer-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.sharedgamezone-footer-section p {
    color: #cbd5e0;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.sharedgamezone-footer-section a {
    color: #90cdf4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sharedgamezone-footer-section a:hover {
    color: #ffffff;
}

.sharedgamezone-footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sharedgamezone-footer-disclaimer-text {
    color: #cbd5e0;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.sharedgamezone-footer-disclaimer-strong {
    color: #ffffff;
    font-weight: 600;
}

.sharedgamezone-footer-disclaimer-link {
    color: #90cdf4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sharedgamezone-footer-disclaimer-link:hover {
    color: #ffffff;
}

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

.sharedgamezone-footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Cookie Consent */
.sharedgamezone-cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: bottom 0.4s ease;
    border-top: 3px solid #3182ce;
}

.sharedgamezone-cookie-consent.show {
    bottom: 0;
}

.sharedgamezone-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.sharedgamezone-cookie-text {
    flex: 1;
    color: #2d3748;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sharedgamezone-cookie-text strong {
    color: #1a202c;
    font-weight: 600;
}

.sharedgamezone-cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.sharedgamezone-cookie-policy {
    color: #3182ce;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sharedgamezone-cookie-policy:hover {
    color: #2c5aa0;
}

.sharedgamezone-cookie-accept {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.25);
}

.sharedgamezone-cookie-accept:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #3182ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.35);
}

/* Animations */
.sharedgamezone-card-animate-out {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sharedgamezone-card-animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Button Ripple Effect */
.sharedgamezone-button-ripple {
    position: relative;
    overflow: hidden;
}

.sharedgamezone-button-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: var(--ripple-size, 100px);
    height: var(--ripple-size, 100px);
    left: calc(var(--ripple-x, 50%) - var(--ripple-size, 50px) / 2);
    top: calc(var(--ripple-y, 50%) - var(--ripple-size, 50px) / 2);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .sharedgamezone-navbar-container {
        padding: 0 1.5rem;
    }

    .sharedgamezone-navbar-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 0;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    .sharedgamezone-navbar-menu.active {
        transform: translateX(0);
    }

    .sharedgamezone-navbar-toggle {
        display: flex;
    }

    .sharedgamezone-navbar-menu li {
        margin: 0;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .sharedgamezone-navbar-link {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        display: block;
        margin: 0;
        border-bottom: none;
        border-radius: 0;
    }

    .sharedgamezone-navbar-link:hover,
    .sharedgamezone-navbar-link.active {
        background: #ebf8ff;
        color: #3182ce;
        margin: 0;
    }

    .sharedgamezone-navbar-menu li:last-child {
        border-bottom: none;
        padding: 1rem 1.5rem;
    }

    .sharedgamezone-navbar-cta {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 1rem 1.5rem;
        display: block;
    }

    .sharedgamezone-hero {
        padding: 7rem 0 4rem;
    }

    .sharedgamezone-hero-title {
        font-size: 2.25rem;
    }

    .sharedgamezone-hero-subtitle {
        font-size: 1.1rem;
    }

    .sharedgamezone-section {
        padding: 3.5rem 0;
    }

    .sharedgamezone-section-title {
        font-size: 2rem;
    }

    .sharedgamezone-section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }

    .sharedgamezone-features-grid,
    .sharedgamezone-games-grid,
    .sharedgamezone-stories-grid,
    .sharedgamezone-news-grid,
    .sharedgamezone-steps-grid,
    .sharedgamezone-team-grid,
    .sharedgamezone-guidelines-grid,
    .sharedgamezone-faq-grid,
    .sharedgamezone-support-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sharedgamezone-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sharedgamezone-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sharedgamezone-cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .sharedgamezone-cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .sharedgamezone-cookie-accept {
        flex: 1;
    }

    .sharedgamezone-legal-title {
        font-size: 1.5rem;
    }

    .sharedgamezone-legal-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .sharedgamezone-hero-title {
        font-size: 1.875rem;
    }

    .sharedgamezone-section-title {
        font-size: 1.75rem;
    }

    .sharedgamezone-news-card,
    .sharedgamezone-step-card {
        flex-direction: column;
    }

    .sharedgamezone-news-date {
        align-self: flex-start;
    }
}

