:root {
    --brand-primary: #5c6bf6;
    --brand-secondary: #9f6df2;
    --brand-accent: #4ad4ff;
    --surface: #0f1021;
    --surface-alt: #161732;
    --text-primary: #f4f6ff;
    --text-secondary: #c5c9ff;
    --text-muted: #8a8fbd;
    --border: rgba(244, 246, 255, 0.1);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow: 0 18px 40px rgba(24, 26, 61, 0.45);
    --shadow-soft: 0 12px 24px rgba(24, 26, 61, 0.25);
    --container-width: min(1120px, 92vw);
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background: radial-gradient(circle at top left, rgba(76, 97, 255, 0.1), transparent 45%),
                radial-gradient(circle at bottom right, rgba(74, 212, 255, 0.12), transparent 50%),
                var(--surface);
    color: var(--text-primary);
    line-height: 1.6;
	min-height:100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}
img.ces{width:100%;cursor:pointer;}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(15, 16, 33, 0.75);
    border-bottom: 1px solid rgba(244, 246, 255, 0.05);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 1.125rem;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 20px rgba(92, 107, 246, 0.4);
}

.logo-mark.small {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    background: rgba(92, 107, 246, 0.15);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.main-nav .active {
    background: rgba(92, 107, 246, 0.25);
    color: var(--text-primary);
    box-shadow: inset 0 0 0 1px rgba(92, 107, 246, 0.35);
}

.hero {
    padding: 120px 0 90px;
    background: radial-gradient(circle at top right, rgba(92, 107, 246, 0.25), transparent 55%);
}

.hero.compact {
    padding: 90px 0 60px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.hero-content {
    flex: 1 1 420px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 3vw, 3.4rem);
    line-height: 1.1;
}

.hero p {
    margin: 0 0 28px;
    color: var(--text-secondary);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-metrics {
    flex: 1 1 280px;
    display: grid;
    gap: 16px;
    background: rgba(22, 23, 50, 0.8);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.metric {
    display: grid;
    gap: 4px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.metric-label {
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.section-header h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 2.5vw, 2.6rem);
}

.section-header p {

    margin: 0;
    color: var(--text-secondary);
}

.game-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.game-grid.xl {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.game-card {
    background: rgba(22, 23, 50, 0.85);
    border-radius: var(--radius-lg);
    padding: 26px;
    border: 1px solid rgba(92, 107, 246, 0.15);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
	cursor:pointer;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(92, 107, 246, 0.35);
}

.game-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
	text-align:center;
}

.game-card p {
    margin: 0;
    color: var(--text-secondary);
}

.game-art {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(92, 107, 246, 0.35), rgba(74, 212, 255, 0.25));
}

.game-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 16, 33, 0) 50%, rgba(15, 16, 33, 0.18) 100%);
    pointer-events: none;
}

.game-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.game-card:hover .game-art img {
    transform: scale(1.05);
}

.highlight-card {
    background: rgba(22, 23, 50, 0.9);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(92, 107, 246, 0.2);
    box-shadow: var(--shadow-soft);
}

.highlights .container {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.split {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.split.reverse {
    direction: rtl;
}

.split.reverse > * {
    direction: ltr;
}

.split-text {
    display: grid;
    gap: 18px;
}

.split-panel {
    background: rgba(22, 23, 50, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(92, 107, 246, 0.2);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.split-panel h3 {
    margin-top: 0;
}

.feature-list {
    margin: 0;
    padding-left: 20px;
    color: var(--text-secondary);
}

.feature-list li {
    margin-bottom: 10px;
}

.testimonial-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-grid blockquote {
    margin: 0;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(22, 23, 50, 0.85);
    border: 1px solid rgba(92, 107, 246, 0.15);
    box-shadow: var(--shadow-soft);
    font-style: italic;
}

.testimonial-grid cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    color: var(--brand-accent);
    letter-spacing: 0.5px;
}

.cta {
    padding: 110px 0;
    background: radial-gradient(circle at center, rgba(92, 107, 246, 0.3), transparent 60%);
}

.cta-card {
    background: rgba(22, 23, 50, 0.92);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(92, 107, 246, 0.35);
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: clamp(2rem, 2.5vw, 2.4rem);
}

.cta-card p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.callout {
    background: rgba(22, 23, 50, 0.65);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.filter-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.filter-chip {
    padding: 8px 14px;
    background: rgba(92, 107, 246, 0.25);
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.timeline-grid,
.team-grid,
.contact-grid .container,
.contact-grid .container > div {
    width: 100%;
}

.timeline-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 36px;
}

.timeline-card {
    background: rgba(22, 23, 50, 0.85);
    border-radius: var(--radius-lg);
    padding: 26px;
    border: 1px solid rgba(92, 107, 246, 0.15);
    box-shadow: var(--shadow-soft);
}

.timeline-year {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(92, 107, 246, 0.2);
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
    background: rgba(22, 23, 50, 0.85);
    border-radius: var(--radius-lg);
    padding: 26px;
    border: 1px solid rgba(92, 107, 246, 0.15);
    box-shadow: var(--shadow-soft);
}

.team-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
}

.team-card p {
    margin: 6px 0;
    color: var(--text-secondary);
}

.contact-grid .container {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card,
.contact-details {
    background: rgba(22, 23, 50, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(92, 107, 246, 0.2);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.contact-card h2,
.contact-details h2 {
    margin-top: 0;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(92, 107, 246, 0.3);
    background: rgba(15, 16, 33, 0.9);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(74, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(74, 212, 255, 0.15);
}

.contact-form button {
    margin-top: 6px;
}

.office {
    margin-bottom: 24px;
}

.office h3 {
    margin-bottom: 6px;
}

.policy .feature-list {
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    box-shadow: 0 12px 24px rgba(92, 107, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(92, 107, 246, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: rgba(92, 107, 246, 0.5);
    color: var(--text-secondary);
}

.btn-outline:hover {
    background: rgba(92, 107, 246, 0.15);
    color: var(--text-primary);
}

.site-footer {
    padding: 40px 0;
    background: rgba(12, 13, 30, 0.9);
    border-top: 1px solid rgba(244, 246, 255, 0.05);
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    justify-content: space-between;
    color: var(--text-muted);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--brand-accent);
}

@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 70px;
    }

    .hero .container {
        gap: 24px;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .contact-grid .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    :root {
        --container-width: calc(100vw - 32px);
    }

    .site-header .container {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-metrics {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .cta-card {
        padding: 36px 24px;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
    }
}


.gameBox{width:100vw; height:100vh; position:fixed; z-index:2000; top:0px; left:0px; background-color:#000; display:none;}
.gameBox .gTitle{height:5vh; color:#CCCCCC; padding-left:2em; overflow:hidden;}
.gameBox .gTitle span,.gameBox .gTitle h6{display:inline-block;margin:0px;}
.gameBox .gTitle span{width:4vh;height:4vh; border:solid 1px #CCC; text-align:center; font-size:2.5em; line-height:2.9vh;-moz-border-radius:100%; -webkit-border-radius:100%; border-radius:100%; margin-top:0.5vh; cursor:pointer;}
.gameBox .gTitle h6{ font-size:1.5em; padding-left:1em;}
.gameBox .gDom{height:95vh;}
.gameBox .gDom iframe{width:100%; height:100%;}