* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f2f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
}

header {
    text-align: center;
    padding: 0;
    color: white;
    margin: -20px -20px 20px -20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

section {
    margin-bottom: 50px;
}

.title-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.title-section-left {
    text-align: left;
    display: flex;
    align-items: stretch;
}

.title-section-right {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.title-section-right h1 {
    text-align: left;
}

.boxart-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    overflow: hidden;
}

.boxart-container {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

h2 {
    color: #667eea;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

h3 {
    color: #764ba2;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    background: #667eea;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.info-box strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.info-box,
.info-box a {
    color: white;
}

.platforms {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.platforms li {
    margin-bottom: 0;
    background: #667eea;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platforms li:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.platforms a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.platforms a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.description {
    background: #667eea;
    color: white;
    padding: 30px;
    border-radius: 16px;
    white-space: pre-line;
    font-size: 1.1em;
    line-height: 1.8;
}

.features {
    list-style: none;
    padding-left: 0;
}

.features li {
    background: #764ba2;
    color: white;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.features li:hover {
    background: #667eea;
    transform: translateX(5px);
}

.features li:before {
    content: "✓ ";
    color: white;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2em;
}

.quote {
    background: #667eea;
    color: white;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 16px;
    font-style: italic;
    position: relative;
    transition: all 0.3s ease;
}

.quote:hover {
    background: #764ba2;
}

.quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4em;
    color: white;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-author {
    margin-top: 15px;
    text-align: right;
    font-style: normal;
    font-weight: bold;
    color: white;
}

.quote-author a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.quote-author a:hover {
    opacity: 1;
}

.credits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.credit {
    background: #764ba2;
    color: white;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.credit:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.credit strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.credit a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.credit a:hover {
    opacity: 1;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.trailer {
    text-align: center;
    margin: 30px 0;
}

.trailer-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
}

.trailer-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 2px solid #f0f0f0;
    color: #666;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .title-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title-section-right {
        text-align: left;
    }

    .info-grid,
    .credits {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

