/* ==============================
   Base Styles
   ============================== */

:root {
    --fc-dark: #0a2a2d;
    --fc-primary: #1c656b;
    --fc-light: #e6f7f7;
    --fc-white: #ffffff;
    --fc-gray: #466b6e;
    --fc-black: #101010;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--fc-primary);
    color: var(--fc-dark);
    line-height: 1.6;
}

/* ==============================
   Header
   ============================== */

.fc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    background: linear-gradient(to right, var(--fc-dark), var(--fc-primary));
    color: var(--fc-white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.fc-logo {
    font-size: 1.4em;
    font-weight: bold;
}

.fc-header nav a {
    color: var(--fc-white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* ==============================
   Hero / Vision
   ============================== */

.fc-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(to right, rgba(16,16,16,0.9), transparent);
    color: var(--fc-white);
}

.fc-hero-text {
    flex: 1 1 300px;
    max-width: 500px;
    margin: 20px;
}

.fc-hero-text h1 {
    font-size: 2.4em;
    margin-bottom: 20px;
}

.fc-hero-text p {
    font-size: 1.1em;
}

.fc-hero-image {
    flex: 1 1 300px;
    max-width: 300px;
    margin: 20px;
}

.fc-hero-image img {
    width: 100%;
    border-radius: 12px;
    filter: brightness(0.8);
    transform: scaleX(-1);
}

/* ==============================
   Games Showcase
   ============================== */

.fc-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.fc-game {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.fc-game-text {
    flex: 1 1 400px;
    padding: 30px;
}

.fc-game-text h2 {
    margin-top: 0;
    color: var(--fc-primary);
}

.fc-game-text p {
    font-size: 1.05em;
    margin-bottom: 15px;
}

.fc-game-text a {
    text-decoration: none;
    color: var(--fc-white);
    background: var(--fc-primary);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.fc-game-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28,101,107,0.5);
}

.fc-game-image {
    flex: 1 1 400px;
    max-width: 500px;
	z-index: -1;
}

.fc-game-image img {
    width: 100%;
    display: block;
}

/* Left / Right alignment */
.fc-game-left {
    flex-direction: row;
	background: linear-gradient(45deg, black 45%, transparent 75%);
}

.fc-game-right {
    flex-direction: row-reverse;
	background: linear-gradient(315deg, black 45%, transparent 75%);
}

/* ==============================
   Values
   ============================== */

.fc-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.fc-value-card {
    background: var(--fc-white);
    color: var(--fc-dark);
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* ==============================
   Footer
   ============================== */

.fc-footer {
    text-align: center;
    padding: 20px;
    background: var(--fc-dark);
    color: var(--fc-white);
}

.fc-footer a {
    color: var(--fc-white);
    text-decoration: underline;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 900px) {
    .fc-hero {
        flex-direction: column;
    }
    .fc-game {
        flex-direction: column !important;
    }
    .fc-game-image, .fc-game-text {
        max-width: 100%;
    }
}
