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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Garamond', 'Times New Roman', serif;
    line-height: 1.6;
    color: #F0F0F0;
    background: #20262E;
}

header {
    background: linear-gradient(135deg, #343B45 0%, #20262E 100%);
    color: #F0F0F0;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

nav {
    background: #20262E;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

nav a {
    color: #B0B0B0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #D4AF37;
}

section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: #343B45;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 0.5rem;
}

.intro-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border: 2px solid #4A5568;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #2A313A;
    min-height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.gameplay-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.gameplay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gameplay-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.gameplay-item:nth-child(even) {
    transform: translateX(50px);
}

.gameplay-item:nth-child(even).visible {
    transform: translateX(0);
}

.gameplay-item h3 {
    color: #F0F0F0;
    font-size: 1.5rem;
    text-align: center;
    max-width: 800px;
}

.gameplay-gif {
    width: 100%;
    max-width: 800px;
    border: 3px solid #D4AF37;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.gameplay-gif img {
    width: 100%;
    height: auto;
    display: block;
}

.gif-placeholder {
    background: linear-gradient(135deg, #343B45 0%, #20262E 100%);
    padding: 4rem;
    text-align: center;
    color: #999;
    font-style: italic;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder {
    color: #999;
    text-align: center;
    font-style: italic;
}

.video-container {
    margin-top: 2rem;
    border: 2px solid #4A5568;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-placeholder {
    color: #999;
    text-align: center;
    font-style: italic;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #343B45 0%, #20262E 100%);
    border-radius: 10px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-member p {
    color: #B0B0B0;
    font-size: 1rem;
}

footer {
    background: #20262E;
    color: #F0F0F0;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 1rem;
    }

    section {
        margin: 1.5rem;
        padding: 1.5rem;
    }
}
