/* Global Styles */
:root {
    --primary-color: #007AFF;
    --secondary-color: #5856D6;
    --background-color: #F5F5F7;
    --text-color: #1D1D1F;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Game Container Styles */
.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
}

/* Game Info Styles */
.game-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.game-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Rating System */
.rating-system {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.rating-stars {
    color: #FFD700;
}

/* Comments Section */
.comments-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comment {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    border-bottom: none;
}

/* Social Share Buttons */
.social-share {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.share-button {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-twitter {
    background: #1DA1F2;
}

.share-facebook {
    background: #4267B2;
}

.share-reddit {
    background: #FF4500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-iframe {
        height: 400px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-container {
        padding: 1rem;
    }
}

/* Game Controls */
.game-controls {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.control-item {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-key {
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
} 