/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    border-bottom: 2px solid #e5e7eb;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: #111827;
}

.support-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    border-bottom: 2px solid #111827;
    padding-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.support-link:hover {
    color: #6b7280;
    border-bottom-color: #6b7280;
}

/* Main Content */
.main {
    padding: 4rem 0;
}

/* Intro Section */
.intro {
    margin-bottom: 5rem;
}

.intro-title {
    font-size: 3rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 300;
    max-width: 42rem;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Game Card */
.game-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    border-color: #111827;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.game-card-content {
    padding: 2.5rem;
}

.game-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: #111827;
    margin-bottom: 1rem;
}

.game-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    min-height: 3rem;
}

.game-details {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.game-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-detail:last-child {
    margin-bottom: 0;
}

.game-detail-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.game-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.game-detail-value {
    color: #111827;
    font-weight: 400;
}

.game-play-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111827;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.game-card:hover .game-play-button {
    gap: 1rem;
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    border-top: 2px solid #e5e7eb;
    margin-top: 8rem;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: center;
}

.footer-text {
    color: #6b7280;
    font-weight: 300;
}

.footer-subtext {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 300;
    margin-top: 0.75rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
    
    .logo {
        font-size: 2.25rem;
    }
    
    .intro-title {
        font-size: 3.75rem;
    }
    
    .game-card-content {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
    
    .games-grid {
        gap: 3rem;
    }
    
    .intro-title {
        font-size: 4rem;
    }
}