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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #EDAF24 0%, #f5c557 100%);
    color: #1a1a1a;
    min-height: 100vh;
    font-size: 16px;
}

header {
    background: linear-gradient(135deg, rgba(36, 99, 237, 0.95), rgba(36, 99, 237, 0.9));
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #2463ED;
    box-shadow: 0 4px 20px rgba(36, 99, 237, 0.3);
}

.logo {
    max-width: 150px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(237, 175, 36, 0.5));
}

nav ul.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(237, 175, 36, 0.2), rgba(245, 197, 87, 0.2));
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

nav ul.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EDAF24;
    transition: width 0.3s ease;
}

nav ul.nav-links li a:hover {
    color: #EDAF24;
    text-shadow: 0 0 10px rgba(237, 175, 36, 0.8);
    background: linear-gradient(135deg, rgba(237, 175, 36, 0.35), rgba(245, 197, 87, 0.35));
    border-color: #EDAF24;
}

nav ul.nav-links li a:hover::after {
    width: 100%;
}

main {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-poster {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto 1rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(36, 99, 237, 0.5);
    border: 3px solid #2463ED;
}

.game-poster img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.game-poster:hover img {
    transform: scale(1.05);
}

footer {
    background: linear-gradient(135deg, rgba(36, 99, 237, 0.95), rgba(36, 99, 237, 0.9));
    padding: 2rem;
    text-align: center;
    border-top: 3px solid #2463ED;
    margin-top: 3rem;
    box-shadow: 0 -4px 20px rgba(36, 99, 237, 0.3);
}

footer p {
    margin: 0.5rem 0;
    color: #fff;
    font-size: 1rem;
}

footer a {
    color: #EDAF24;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(237, 175, 36, 0.8);
}

/* HERO SECTION */
.hero-content {
    text-align: center;
    padding: 2rem 2rem 1.5rem 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2463ED, #1a4db8, #EDAF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: 900;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(36, 99, 237, 0.6));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(237, 175, 36, 0.8));
    }
}

.tagline {
    font-size: 1.5rem;
    color: #2463ED;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #2463ED, #1a4db8);
    color: #fff;
    box-shadow: 0 4px 20px rgba(36, 99, 237, 0.5);
    border-color: #2463ED;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(36, 99, 237, 0.7);
    background: linear-gradient(135deg, #2d70f5, #2463ED);
    border-color: #1a4db8;
}

.btn-secondary {
    background: linear-gradient(135deg, #fff, #f5f5f5);
    color: #2463ED;
    border: 2px solid #2463ED;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(36, 99, 237, 0.4);
    background: linear-gradient(135deg, #2463ED, #1a4db8);
    color: #fff;
}

/* SECTIONS */
.section {
    padding: 4rem 0;
    scroll-margin-top: 80px;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2463ED;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* ABOUT SECTION */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #2463ED;
    box-shadow: 0 4px 20px rgba(36, 99, 237, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.3rem !important;
    color: #2463ED !important;
    font-weight: 700;
}

.about-text h3 {
    color: #2463ED;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 800;
}

.about-text strong {
    color: #EDAF24;
    font-weight: 700;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #2463ED;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(36, 99, 237, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #EDAF24;
    box-shadow: 0 8px 30px rgba(237, 175, 36, 0.4);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2463ED;
}

.feature-card h3 {
    color: #2463ED;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 1rem;
}

/* GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #2463ED;
    box-shadow: 0 4px 20px rgba(36, 99, 237, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 99, 237, 0.9), rgba(237, 175, 36, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #EDAF24;
    box-shadow: 0 8px 30px rgba(237, 175, 36, 0.6);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox per gallery */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #2463ED;
    box-shadow: 0 0 50px rgba(36, 99, 237, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #EDAF24;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-nav:hover {
    color: #EDAF24;
    text-shadow: 0 0 20px rgba(237, 175, 36, 0.8);
}

/* CONTACT SECTION */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #2463ED;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(36, 99, 237, 0.3);
}

.contact-info h3 {
    color: #2463ED;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 800;
}

.team-name {
    font-size: 1.8rem;
    color: #EDAF24;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.credits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.credits-column h4 {
    color: #2463ED;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid #EDAF24;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.credits-column ul {
    list-style: none;
    padding: 0;
}

.credits-column ul li {
    color: #1a1a1a;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    text-align: center;
    transition: color 0.3s ease;
}

.credits-column ul li:hover {
    color: #2463ED;
    font-weight: 600;
}

.contact-item {
    margin: 2rem 0;
    text-align: center;
}

.contact-label {
    color: #2463ED;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a:hover {
    color: #2463ED;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 99, 237, 0.1);
    border: 2px solid #2463ED;
    border-radius: 8px;
    color: #2463ED;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2463ED;
    border-color: #2463ED;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(36, 99, 237, 0.4);
}

/* CONTACT FORM */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #2463ED;
    box-shadow: 0 4px 20px rgba(36, 99, 237, 0.3);
}

.contact-form h3 {
    color: #2463ED;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #2463ED;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EDAF24;
    box-shadow: 0 0 20px rgba(237, 175, 36, 0.3);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    body {
        font-size: 15px;
    }

    header {
        padding: 1rem;
    }

    nav ul.nav-links {
        gap: 1.5rem;
    }

    nav ul.nav-links li a {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .btn {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .intro-text {
        font-size: 1.2rem !important;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-poster {
        max-width: 100%;
        margin: 1rem auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .lightbox-nav {
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .logo {
        max-width: 100px;
    }

    nav ul.nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }

    nav ul.nav-links li a {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
    }

    main {
        padding: 1rem;
    }

    .section {
        padding: 2rem 0;
    }

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

    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .download-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .game-poster {
        max-width: 100%;
        margin: 1rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .intro-text {
        font-size: 1.05rem !important;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .team-name {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .credits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .credits-column h4 {
        font-size: 1.3rem;
    }

    .credits-column ul li {
        font-size: 1rem;
    }

    .contact-label {
        font-size: 1rem;
    }

    .contact-item a {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-overlay span {
        font-size: 1.1rem;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 2rem;
    }

    .lightbox-content {
        max-width: 95%;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    nav ul.nav-links li a {
        font-size: 0.95rem;
        padding: 0.4rem 0.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .intro-text {
        font-size: 1rem !important;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    .contact-info {
        padding: 1.2rem;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .credits-column h4 {
        font-size: 1.1rem;
    }

    .credits-column ul li {
        font-size: 0.95rem;
    }

    .gallery-overlay span {
        font-size: 1rem;
    }

    footer p {
        font-size: 0.85rem;
    }
}