body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f0f4fa;
    color: #1a1a1a;
}

header {
    background-color: #1f2d5c;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    background-color: #3478f6;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin-left: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.7;
}

.hero-home {
    background-color: #dbeaff;
    text-align: center;
    padding: 0;
    margin: 0;
}

.dream-full-img {
    display: block;
    width: 100vw;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 0;
    padding: 0;
    border: none;
    max-height: 80vh;
}

.hero-description {
    font-size: 18px;
    margin: 20px auto;
    color: #1f2d5c;
    max-width: 700px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 24px;
    background-color: #3478f6;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #1f5edc;
}

.upcoming-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.upcoming-section h2 {
  font-size: 28px;
  color: #1f2d5c;
  margin-bottom: 30px;
}

.upcoming-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.game-card {
  background-color: #f0f4fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.game-card h3 {
  margin: 10px 0 5px;
  color: #1f2d5c;
}

.game-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.coming-tag {
  display: inline-block;
  background-color: #3478f6;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.custom-footer {
    background-color: #1f2d5c;
    color: white;
    padding: 30px 40px 20px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left .logo-footer {
    background-color: #3478f6;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.footer-center a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s ease;
}

.footer-center a:hover {
    opacity: 0.7;
}

.footer-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    margin: 0 5px;
    object-fit: contain;
    image-rendering: auto;
    display: inline-block;
}


.social-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


footer hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 20px 0 10px;
}

footer p {
    text-align: center;
    font-size: 13px;
    color: #ccc;
    margin: 0;
}

.games-section {
    padding: 40px 20px;
    text-align: center;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    padding: 0 20px;
}

.game-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    border-radius: 8px;
}

.game-card h3 {
    margin: 10px 0 5px;
    color: #1f2d5c;
}

.game-card p {
    font-size: 14px;
    color: #444;
}

.store-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.store-badge {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.about-section,
.contact-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.positions-section {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.positions-section h2 {
    font-size: 32px;
    color: #1f2d5c;
    margin-bottom: 40px;
}

.positions-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.position-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    width: 260px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.position-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.position-card h3 {
    margin: 12px 0 6px;
    font-size: 20px;
    color: #1f2d5c;
}

.position-count {
    display: inline-block;
    background-color: #00bfff;
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

.position-card:hover {
    transform: scale(1.03);
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 15px;
    font-weight: bold;
}

form input,
form textarea,
form button {
    margin-top: 5px;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

form button {
    margin-top: 20px;
    background-color: #1f2d5c;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #152147;
}

.social-boxes {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-box {
    background-color: #37386b;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 280px;
    transition: transform 0.3s ease;
}

.social-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.social-box p {
    color: white;
    font-weight: 500;
    font-size: 15px;
    margin: 0;
}

.social-box:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin-left: 0;
        margin-right: 20px;
    }

    .header-left {
        margin-bottom: 10px;
    }

    .store-links {
        flex-direction: column;
        gap: 6px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        max-width: 80%;
        margin-top: 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
}