.game-embed-container {
    padding: 10px;
    max-width: 100%;
}

.game-embed-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.game-embed {
    background: #1e1e1e;
    color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-embed-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

.game-embed-info {
    flex: 1;
    min-width: 0;
}

.game-embed-platform {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 4px;
}

.game-embed-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
    line-height: 1.2;
}

.game-embed-description {
    font-size: 12px;
    color: #ddd;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-embed-button {
    flex-shrink: 0;
}

.game-embed-button a {
    display: inline-block;
    background: #3DDC84;
    color: white;
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.game-embed-button a:hover {
    background: #34c471;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .game-embed-container {
        padding: 8px;
    }
    
    .game-embed {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .game-embed-image {
        width: 100px;
        height: 100px;
        align-self: center;
    }
    
    .game-embed-info {
        text-align: center;
    }
    
    .game-embed-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .game-embed-description {
        font-size: 13px;
        -webkit-line-clamp: 4;
        text-align: left;
    }
    
    .game-embed-button a {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 6px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .game-embed {
        padding: 10px;
    }
    
    .game-embed-image {
        width: 80px;
        height: 80px;
    }
    
    .game-embed-title {
        font-size: 16px;
    }
    
    .game-embed-description {
        font-size: 12px;
    }
    
    .game-embed-button a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .game-embed-image {
        width: 120px;
        height: 120px;
    }
    
    .game-embed-title {
        font-size: 18px;
    }
    
    .game-embed-description {
        font-size: 14px;
    }
}