/* GameEchoHub.com - Complete Custom Design for Switzerland */
/* Reset and Base Styles */
:root {
    --gameechohub-primary: #2563eb;
    --gameechohub-secondary: #7c3aed;
    --gameechohub-accent: #f59e0b;
    --gameechohub-dark: #1e293b;
    --gameechohub-light: #f8fafc;
    --gameechohub-gray: #64748b;
    --gameechohub-success: #10b981;
    --gameechohub-danger: #ef4444;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--gameechohub-dark);
    background: var(--gameechohub-light);
}

.gameechohub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.gameechohub-nav {
    background: linear-gradient(135deg, var(--gameechohub-primary), var(--gameechohub-secondary));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gameechohub-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.gameechohub-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.gameechohub-brand:hover {
    transform: scale(1.05);
    color: white;
}

.gameechohub-brand i {
    font-size: 2rem;
}

.gameechohub-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.gameechohub-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.gameechohub-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.gameechohub-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.gameechohub-link:hover,
.gameechohub-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.gameechohub-cta {
    background: var(--gameechohub-accent);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.gameechohub-cta:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .gameechohub-hamburger {
        display: flex;
        z-index: 1001;
    }

    .gameechohub-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .gameechohub-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .gameechohub-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    .gameechohub-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--gameechohub-primary), var(--gameechohub-secondary));
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 3rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        align-items: stretch;
    }

    .gameechohub-menu.active {
        right: 0;
    }

    .gameechohub-link,
    .gameechohub-cta {
        width: 100%;
        text-align: center;
        padding: 1rem !important;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.gameechohub-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gameechohub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

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

.gameechohub-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

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

.gameechohub-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gameechohub-hero-btn {
    display: inline-block;
    background: white;
    color: var(--gameechohub-primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gameechohub-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--gameechohub-secondary);
}

/* Section Styles */
.gameechohub-section {
    padding: 5rem 0;
}

.gameechohub-section-alt {
    background: white;
}

.gameechohub-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gameechohub-dark);
}

.gameechohub-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gameechohub-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.gameechohub-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gameechohub-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Card Styles */
.gameechohub-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gameechohub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gameechohub-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gameechohub-primary), var(--gameechohub-secondary));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.gameechohub-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gameechohub-dark);
}

.gameechohub-card p {
    color: var(--gameechohub-gray);
    line-height: 1.7;
}

/* Game Card Styles */
.gameechohub-game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gameechohub-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gameechohub-game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gameechohub-game-content {
    padding: 1.5rem;
}

.gameechohub-game-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gameechohub-dark);
}

.gameechohub-game-desc {
    color: var(--gameechohub-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.gameechohub-game-btn {
    display: block;
    width: 100%;
    background: var(--gameechohub-primary);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.gameechohub-game-btn:hover {
    background: var(--gameechohub-secondary);
    transform: scale(1.02);
}

/* Footer Styles */
.gameechohub-footer {
    background: var(--gameechohub-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.gameechohub-footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.gameechohub-footer-section p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.gameechohub-footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gameechohub-footer-section a:hover {
    color: var(--gameechohub-accent);
}

.gameechohub-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.gameechohub-disclaimer a {
    color: var(--gameechohub-accent);
    text-decoration: none;
}

.gameechohub-footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.gameechohub-footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 0.5rem;
}

/* Cookie Consent Popup */
.gameechohub-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 600px;
    width: 90%;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.gameechohub-cookie-content {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gameechohub-cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--gameechohub-dark);
    font-size: 0.95rem;
}

.gameechohub-cookie-content i {
    font-size: 1.5rem;
    color: var(--gameechohub-accent);
}

.gameechohub-cookie-content a {
    color: var(--gameechohub-primary);
    text-decoration: underline;
}

.gameechohub-cookie-btn {
    background: var(--gameechohub-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gameechohub-cookie-btn:hover {
    background: var(--gameechohub-secondary);
    transform: scale(1.05);
}

/* Form Styles */
.gameechohub-form {
    max-width: 600px;
    margin: 0 auto;
}

.gameechohub-form-group {
    margin-bottom: 1.5rem;
}

.gameechohub-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gameechohub-dark);
}

.gameechohub-form-input,
.gameechohub-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.gameechohub-form-input:focus,
.gameechohub-form-textarea:focus {
    outline: none;
    border-color: var(--gameechohub-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.gameechohub-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.gameechohub-form-btn {
    background: var(--gameechohub-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.gameechohub-form-btn:hover {
    background: var(--gameechohub-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gameechohub-form-btn:disabled {
    background: var(--gameechohub-gray);
    cursor: not-allowed;
    transform: none;
}

.gameechohub-alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
}

.gameechohub-alert.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gameechohub-alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--gameechohub-success);
}

.gameechohub-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--gameechohub-danger);
}

/* Button Styles */
.gameechohub-btn {
    display: inline-block;
    background: var(--gameechohub-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.gameechohub-btn:hover {
    background: var(--gameechohub-secondary);
    transform: translateY(-2px);
    color: white;
}

.gameechohub-btn-outline {
    background: transparent;
    border: 2px solid var(--gameechohub-primary);
    color: var(--gameechohub-primary);
}

.gameechohub-btn-outline:hover {
    background: var(--gameechohub-primary);
    color: white;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .gameechohub-hero h1 {
        font-size: 2.5rem;
    }

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

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

    .gameechohub-grid {
        grid-template-columns: 1fr;
    }

    .gameechohub-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .gameechohub-legal {
        padding: 2rem 1rem;
        border-radius: 8px;
    }

    .gameechohub-legal h1 {
        font-size: 2rem;
    }

    .gameechohub-legal h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .gameechohub-legal h3 {
        font-size: 1.2rem;
    }

    .gameechohub-legal p,
    .gameechohub-legal li {
        font-size: 1rem;
    }

    .gameechohub-legal ul {
        padding-left: 1.5rem;
    }

    .gameechohub-legal-highlight {
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 0;
    }
}

/* Legal Pages Styles */
.gameechohub-legal {
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.gameechohub-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gameechohub-dark);
    font-weight: 800;
    line-height: 1.3;
}

.gameechohub-legal h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--gameechohub-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(37, 99, 235, 0.1);
}

.gameechohub-legal h2 i {
    font-size: 1.5rem;
}

.gameechohub-legal h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gameechohub-dark);
    font-weight: 700;
}

.gameechohub-legal h3 i {
    color: var(--gameechohub-primary);
    margin-right: 0.5rem;
}

.gameechohub-legal p {
    margin-bottom: 1.25rem;
    line-height: 1.85;
    color: #475569;
    font-size: 1.05rem;
}

.gameechohub-legal p strong {
    color: var(--gameechohub-dark);
    font-weight: 600;
}

.gameechohub-legal ul {
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    list-style-type: disc;
}

.gameechohub-legal li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: #475569;
    font-size: 1.025rem;
}

.gameechohub-legal li strong {
    color: var(--gameechohub-dark);
    font-weight: 600;
}

.gameechohub-legal a {
    color: var(--gameechohub-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.gameechohub-legal a:hover {
    color: var(--gameechohub-secondary);
}

.gameechohub-legal-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-left: 5px solid var(--gameechohub-primary);
    padding: 1.75rem 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.gameechohub-legal-highlight h3 {
    margin-top: 0;
    color: var(--gameechohub-primary);
    font-size: 1.4rem;
}

.gameechohub-legal-highlight p {
    margin-bottom: 0;
    color: var(--gameechohub-dark);
}

.gameechohub-legal-highlight i {
    color: var(--gameechohub-primary);
}

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

.gameechohub-mt-4 {
    margin-top: 2rem;
}

.gameechohub-mb-4 {
    margin-bottom: 2rem;
}
